Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/Arrays/Slate/arrays.slate
Normal file
14
Task/Arrays/Slate/arrays.slate
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
slate[1]> #x := ##(1 2 3).
|
||||
{1. 2. 3}
|
||||
slate[2]> x
|
||||
{1. 2. 3}
|
||||
slate[3]> #y := {1 + 2. 3 + 4. 5}.
|
||||
{3. 7. 5}
|
||||
slate[4]> y at: 2 put: 99.
|
||||
99
|
||||
slate[5]> y
|
||||
{3. 7. 99}
|
||||
slate[6]> x first
|
||||
1
|
||||
slate[7]> x at: 0.
|
||||
1
|
||||
Loading…
Add table
Add a link
Reference in a new issue