mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 10:12:14 -04:00
6 lines
103 B
Common Lisp
6 lines
103 B
Common Lisp
(define format _format)
|
|
|
|
(define my-thing 'apple)
|
|
(set! my-thing 'banana)
|
|
(format #t "~A~%" my-thing)
|
|
0 |