mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 18:14:34 -04:00
9 lines
207 B
Common Lisp
9 lines
207 B
Common Lisp
(define format _format)
|
|
|
|
(let ((alist (list (cons 'a 'b)
|
|
(cons 'c 'd)
|
|
(cons 'e 'f))))
|
|
(set! alist (insert-cons! (cons 'c 'w) alist))
|
|
(format #t "~A~%" alist)
|
|
)
|
|
0 |