mirror of
https://github.com/open-goal/jak-project
synced 2026-07-01 20:20:35 -04:00
6 lines
209 B
Common Lisp
6 lines
209 B
Common Lisp
(deftype false-in-static-pointer (basic)
|
|
((foo (pointer process)))
|
|
)
|
|
|
|
(define *false-in-static-pointer* (new 'static 'false-in-static-pointer :foo #f))
|
|
(format #t "~A~%" (-> *false-in-static-pointer* foo)) |