Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -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)