Carp/examples/no_core.carp

8 lines
138 B
Plaintext
Raw Normal View History

; this compiles without needing the core libraries (--no-core flag)
2018-02-27 17:30:22 +03:00
(load "Macros.carp")
(load "Int.carp")
(defn main []
(Int.+ 1 2))