aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nim/Makefile4
-rw-r--r--nim/mal.nimble2
-rw-r--r--nim/stepA_mal.nim (renamed from nim/stepA_interop.nim)0
3 files changed, 3 insertions, 3 deletions
diff --git a/nim/Makefile b/nim/Makefile
index 1da1ae6..4b8707d 100644
--- a/nim/Makefile
+++ b/nim/Makefile
@@ -1,14 +1,14 @@
#####################
SOURCES_BASE = types.nim reader.nim printer.nim
-SOURCES_LISP = env.nim core.nim stepA_interop.nim
+SOURCES_LISP = env.nim core.nim stepA_mal.nim
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
SRCS = step0_repl.nim step1_read_print.nim step2_eval.nim step3_env.nim \
step4_if_fn_do.nim step5_tco.nim step6_file.nim step7_quote.nim \
- step8_macros.nim step9_try.nim stepA_interop.nim
+ step8_macros.nim step9_try.nim stepA_mal.nim
BINS = $(SRCS:%.nim=%)
#####################
diff --git a/nim/mal.nimble b/nim/mal.nimble
index db35b0b..5ec4b7f 100644
--- a/nim/mal.nimble
+++ b/nim/mal.nimble
@@ -5,7 +5,7 @@ author = "Dennis Felsing"
description = "Mal code in Nim"
license = "MIT"
-bin = "step0_repl, step1_read_print, step2_eval, step3_env, step4_if_fn_do, step5_tco, step6_file, step7_quote, step8_macros, step9_try, stepA_interop"
+bin = "step0_repl, step1_read_print, step2_eval, step3_env, step4_if_fn_do, step5_tco, step6_file, step7_quote, step8_macros, step9_try, stepA_mal"
[Deps]
Requires = "nim >= 0.10.3, nre >= 0.6.0"
diff --git a/nim/stepA_interop.nim b/nim/stepA_mal.nim
index 48dd9dd..48dd9dd 100644
--- a/nim/stepA_interop.nim
+++ b/nim/stepA_mal.nim