Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
;; Project : Associative array/Iteration
|
||||
|
||||
(setf x (make-array '(3 2)
|
||||
:initial-contents '(("hello" 13 ) ("world" 31) ("!" 71))))
|
||||
(setf xlen (array-dimensions x))
|
||||
(setf len (car xlen))
|
||||
(dotimes (n len)
|
||||
(terpri)
|
||||
(format t "~a" (aref x n 0))
|
||||
(format t "~a" " : ")
|
||||
(format t "~a" (aref x n 1)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue