Carp/examples/deleters.carp

18 lines
223 B
Plaintext
Raw Normal View History

2017-09-06 11:05:19 +03:00
(use IO)
(use Int)
(use Array)
(deftype A [s String])
(defn f []
(let [stuff [(A.init (String.copy "hej")) (A.init (String.copy "svej"))]]
2017-09-05 14:49:53 +03:00
()))
(defn main []
(do (f)
(println "OK.")))
2017-09-08 13:24:57 +03:00
(build)
(run)
(quit)