Hello World in J
Every programming journey starts with Hello World. In J, this is remarkably concise—just a string expression that outputs to the screen.
The Code
Create a file named hello.ijs:
| |
Every programming journey starts with Hello World. In J, this is remarkably concise—just a string expression that outputs to the screen.
Create a file named hello.ijs:
| |
In most languages, variables hold single values—a number, a string, a boolean. In J, the fundamental unit of data is the array. Even a single number is an array (a zero-dimensional one). Understanding …
Read more →