Carp/examples/no_core.carp
2018-02-27 15:30:22 +01:00

8 lines
138 B
Plaintext

; this compiles without needing the core libraries (--no-core flag)
(load "Macros.carp")
(load "Int.carp")
(defn main []
(Int.+ 1 2))