June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -7,15 +7,15 @@ const int N = 5.
numbers = (:anN)
[
^ Array new length:anN; populate(:n)( n )
^ Array new(anN); populate(:n)<int>( n )
].
program =
public program =
[
var aNumbers := numbers eval:N.
var aNumbers := numbers(N).
Combinator new:M of:aNumbers; forEach(:aRow)
[
console printLine:aRow
console printLine(aRow toLiteral)
].
console readChar.