Jプログラミング言語で配列アクセスを行うにはどうすればよいですか? たとえば、C++ を疑似コード言語として使用すると、次のようになります。
int M [100]; // declare an array called M
int j = 5; //index into the array
int y = 10; //value to store or load from the array
M[j] = y; // store y into the array
y = M[j]; // load y from the array
この種の配列アクセスは慣用的な J ではどのように見えるでしょうか?