Category:J: Difference between revisions

Content added Content deleted
Line 34: Line 34:
Unless you attend an institution which has made a J interpreter available to you through your web browser, if you want to see how J works you should probably [http://www.jsoftware.com/stable.htm install] a copy of J. If you want to understand how to experiment with alternative expressions you should probably study some of its [http://www.jsoftware.com/jwiki/Guides/Getting%20Started#Documentation documentation].
Unless you attend an institution which has made a J interpreter available to you through your web browser, if you want to see how J works you should probably [http://www.jsoftware.com/stable.htm install] a copy of J. If you want to understand how to experiment with alternative expressions you should probably study some of its [http://www.jsoftware.com/jwiki/Guides/Getting%20Started#Documentation documentation].


For example, the phrase [code](+/ % #)[/code] finds the average of a list of numbers.
For example, the phrase <code>(+/ % #)</code> finds the average of a list of numbers.


<lang J> (+/ % #) 1 2 3
<lang J> (+/ % #) 1 2 3