mirror of
https://github.com/open-goal/jak-project
synced 2026-07-06 14:01:20 -04:00
9 lines
223 B
Plaintext
9 lines
223 B
Plaintext
(test-setup '((c . w) (a . b) (e . f)) #f)
|
|
|
|
(let ((alist (list (cons 'a 'b)
|
|
(cons 'c 'd)
|
|
(cons 'e 'f))))
|
|
(set! alist (insert-cons! (cons 'c 'w) alist))
|
|
(format #t "~A~%" alist)
|
|
)
|