Initial commit

This commit is contained in:
2026-05-08 14:51:47 +03:00
commit f89b381fdb
12 changed files with 1085 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
.PHONY: build test clean run-example
NIMCACHE = nimcache
build:
nim c -o:cljnim src/cljnim.nim
test:
nim c -r tests/test_reader.nim
run-example: build
./cljnim run examples/hello.clj
clean:
rm -f cljnim
rm -rf $(NIMCACHE)
find . -name "*_generated.nim" -delete
find . -name "*_generated" -delete