Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
: (setq L (1 a 2 b 3 c)) # Create a list of 6 items in 'L'
|
||||
-> (1 a 2 b 3 c)
|
||||
|
||||
: (nth L 4) # Get a pointer to the 4th item
|
||||
-> (b 3 c)
|
||||
|
||||
: (set (nth L 4) "Hello") # Store "Hello" in that location
|
||||
-> "Hello"
|
||||
|
||||
: L # Look at the modified list in 'L'
|
||||
-> (1 a 2 "Hello" 3 c)
|
||||
Loading…
Add table
Add a link
Reference in a new issue