aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-15 20:11:11 -0600
committerJoel Martin <github@martintribe.org>2015-02-15 20:11:11 -0600
commit9d8f02993276fe9b77f7c21099d1b9f1602d195c (patch)
tree069272615d5049104fe9eb32194e905f4b24ba1f
parentdc2c5b3d8f41cbae56c6fb22847d0aac5806b51f (diff)
downloadmal-9d8f02993276fe9b77f7c21099d1b9f1602d195c.tar.gz
mal-9d8f02993276fe9b77f7c21099d1b9f1602d195c.zip
miniMAL: step6
-rw-r--r--miniMAL/core.json2
-rw-r--r--miniMAL/step5_tco.json4
-rw-r--r--miniMAL/step6_file.json97
-rw-r--r--tests/step6_file.mal12
4 files changed, 107 insertions, 8 deletions
diff --git a/miniMAL/core.json b/miniMAL/core.json
index 4717f77..8b66801 100644
--- a/miniMAL/core.json
+++ b/miniMAL/core.json
@@ -21,6 +21,8 @@
["do",
["println", ["pr-list", "a", false, ["`", " "]]],
null]],
+ ["`", "read-string"], "read-str",
+ ["`", "slurp"], "slurp",
["`", "<"], "<",
["`", "<="], "<=",
diff --git a/miniMAL/step5_tco.json b/miniMAL/step5_tco.json
index fa70848..ced63e3 100644
--- a/miniMAL/step5_tco.json
+++ b/miniMAL/step5_tco.json
@@ -37,8 +37,8 @@
["EVAL", ["nth", "ast", 2], "let-env"]]],
["if", ["=", ["`", "do"], "a0"],
["do",
- ["eval-ast", ["slice", "ast", 1, ["-", ["count", "ast"], 1]]],
- ["EVAL", ["nth", "ast", ["-", ["count", "el"], 1]]]],
+ ["eval-ast", ["slice", "ast", 1, ["-", ["count", "ast"], 1]], "env"],
+ ["EVAL", ["nth", "ast", ["-", ["count", "ast"], 1]], "env"]],
["if", ["=", ["`", "if"], "a0"],
["let", ["cond", ["EVAL", ["nth", "ast", 1], "env"]],
["if", ["or", ["=", "cond", null], ["=", "cond", false]],
diff --git a/miniMAL/step6_file.json b/miniMAL/step6_file.json
new file mode 100644
index 0000000..39993c0
--- /dev/null
+++ b/miniMAL/step6_file.json
@@ -0,0 +1,97 @@
+["do",
+
+["load-file", ["`", "miniMAL-core.json"]],
+["load-file", ["`", "types.json"]],
+["load-file", ["`", "reader.json"]],
+["load-file", ["`", "printer.json"]],
+["load-file", ["`", "env.json"]],
+["load-file", ["`", "core.json"]],
+
+["def", "READ", ["fn", ["strng"], ["read-str", "strng"]]],
+
+["def", "eval-ast", ["fn", ["ast", "env"],
+ ["if", ["symbol?", "ast"],
+ ["env-get", "env", "ast"],
+ ["if", ["list?", "ast"],
+ ["map", ["fn", ["x"], ["EVAL", "x", "env"]], "ast"],
+ "ast"]]]],
+
+["def", "LET", ["fn", ["env", "args"],
+ ["if", [">", ["count", "args"], 0],
+ ["do",
+ ["env-set", "env", ["nth", "args", 0],
+ ["EVAL", ["nth", "args", 1], "env"]],
+ ["LET", "env", ["rest", ["rest", "args"]]]]]]],
+
+["def", "EVAL", ["fn", ["ast", "env"],
+ ["if", ["not", ["list?", "ast"]],
+ ["eval-ast", "ast", "env"],
+ ["let", ["a0", ["get", ["first", "ast"], ["`", "val"]]],
+ ["if", ["=", ["`", "def!"], "a0"],
+ ["env-set", "env", ["nth", "ast", 1],
+ ["EVAL", ["nth", "ast", 2], "env"]],
+ ["if", ["=", ["`", "let*"], "a0"],
+ ["let", ["let-env", ["env-new", "env"]],
+ ["do",
+ ["LET", "let-env", ["nth", "ast", 1]],
+ ["EVAL", ["nth", "ast", 2], "let-env"]]],
+ ["if", ["=", ["`", "do"], "a0"],
+ ["do",
+ ["eval-ast", ["slice", "ast", 1, ["-", ["count", "ast"], 1]], "env"],
+ ["EVAL", ["nth", "ast", ["-", ["count", "ast"], 1]], "env"]],
+ ["if", ["=", ["`", "if"], "a0"],
+ ["let", ["cond", ["EVAL", ["nth", "ast", 1], "env"]],
+ ["if", ["or", ["=", "cond", null], ["=", "cond", false]],
+ ["if", [">", ["count", "ast"], 3],
+ ["EVAL", ["nth", "ast", 3], "env"],
+ null],
+ ["EVAL", ["nth", "ast", 2], "env"]]],
+ ["if", ["=", ["`", "fn*"], "a0"],
+ ["malfunc",
+ ["fn", ["&", "args"],
+ ["let", ["e", ["env-new", "env", ["nth", "ast", 1], "args"]],
+ ["EVAL", ["nth", "ast", 2], "e"]]],
+ ["nth", "ast", 2], "env", ["nth", "ast", 1]],
+ ["let", ["el", ["eval-ast", "ast", "env"],
+ "f", ["first", "el"],
+ "args", ["rest", "el"]],
+ ["if", ["malfunc?", "f"],
+ ["EVAL", ["get", "f", ["`", "ast"]],
+ ["env-new", ["get", "f", ["`", "env"]],
+ ["get", "f", ["`", "params"]],
+ "args"]],
+ ["apply", "f", "args"]]]]]]]]]]]],
+
+["def", "PRINT", ["fn", ["exp"],
+ ["pr-str", "exp", true]]],
+
+
+["def", "repl-env", ["env-new"]],
+
+["def", "rep", ["fn", ["strng"],
+ ["try",
+ ["PRINT", ["EVAL", ["READ", "strng"], "repl-env"]],
+ ["catch", "exc",
+ ["str", ["`", "Error: "], [".", "exc", ["`", "toString"]]]]]]],
+
+["`", "core.mal: defined using miniMAL"],
+["map", ["fn", ["k"], ["env-set", "repl-env",
+ ["symbol", "k"],
+ ["get", "core-ns", "k"]]],
+ ["keys", "core-ns"]],
+["env-set", "repl-env", ["symbol", ["`", "eval"]],
+ ["fn", ["ast"], ["EVAL", "ast", "repl-env"]]],
+["env-set", "repl-env", ["symbol", ["`", "*ARGV*"]],
+ ["slice", "*ARGV*", 1]],
+
+["`", "core.mal: defined using mal itself"],
+["rep", ["`", "(def! not (fn* (a) (if a false true)))"]],
+["rep", ["`", "(def! load-file (fn* (f) (eval (read-string (str \"(do \" (slurp f) \")\")))))"]],
+
+["if", ["not", ["empty?", "*ARGV*"]],
+ ["rep", ["str", ["`", "(load-file \""], ["get", "*ARGV*", 0], ["`", "\")"]]],
+ ["repl", ["`", "user> "], "rep"]],
+
+null
+
+]
diff --git a/tests/step6_file.mal b/tests/step6_file.mal
index 5c7e32f..adee56d 100644
--- a/tests/step6_file.mal
+++ b/tests/step6_file.mal
@@ -1,3 +1,9 @@
+;;; TODO: really a step5 test
+;;
+;; Testing that (do (do)) not broken by TCO
+(do (do 1 2))
+;=>2
+
;; Testing read-string, eval and slurp
(read-string "(+ 2 3)")
@@ -21,12 +27,6 @@
(inc3 9)
;=>12
-;;; TODO: really a step5 test
-;;
-;; Testing that (do (do)) not broken by TCO
-(do (do 1 2))
-;=>2
-
;;
;; Testing that *ARGV* exists and is an empty list
(list? *ARGV*)