Files
jak-project/test/goalc/source_templates/strings/quote-symbol.static.gc
T
2020-10-09 13:23:41 -04:00

6 lines
103 B
Common Lisp

(define format _format)
(define my-thing 'apple)
(set! my-thing 'banana)
(format #t "~A~%" my-thing)
0