2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -0,0 +1,17 @@
#import system.
#import extensions.
#symbol program =
[
#var n := Integer new.
#var m := Integer new.
console write:"Enter two space delimited integers:".
console readLine:n:m.
#var myArray := RealMatrix new:n:m.
myArray@0@0 := 2.
console writeLine:(myArray@0@0).
].

View file

@ -0,0 +1,19 @@
#import system.
#import system'routines.
#import extensions.
#symbol program =
[
#var n := Integer new.
#var m := Integer new.
console write:"Enter two space delimited integers:".
console readLine:n:m.
#var myArray2 := Array new:n set &every:(&index:i) [ Array new:m ].
myArray2@0@0 := 2.
myArray2@1@0 := "Hello".
console writeLine:(myArray2@0@0).
console writeLine:(myArray2@1@0).
].