Files
jak-project/test/goalc/source_templates/methods/methods.static.gc
T
water111 d5d0d7f924 Add compiler features for gkernel (#83)
* add some type stuff for gkernel

* more tweaks

* blah

* more little tweaks and more of gkernel

* add static structures with integer fields but not basics

* static structures

* update gkernel
2020-10-16 17:08:26 -04:00

8 lines
317 B
Common Lisp

(define format _format)
; no longer use process as a test type here because it's no longer built-in so is
; only forward declared at this point.
(format #t "~A~A~%" (eq? (-> type method-table 2) (method type print))
(eq? (-> string method-table 3) (method "test" inspect))
)
0