Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
(idx 'A (def "foo" 5) T)
|
||||
(idx 'A (def "bar" 10) T)
|
||||
(idx 'A (def "baz" 15) T)
|
||||
|
||||
: A # Get the whole tree
|
||||
-> ("foo" ("bar" NIL "baz"))
|
||||
|
||||
: (idx 'A) # Get all keys
|
||||
-> ("bar" "baz" "foo")
|
||||
|
||||
: (mapcar val (idx 'A)) # Get all values
|
||||
-> (10 15 5)
|
||||
Loading…
Add table
Add a link
Reference in a new issue