aboutsummaryrefslogtreecommitdiff
path: root/cs/step3_env.cs
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-04-19 13:04:09 -0500
committerJoel Martin <github@martintribe.org>2014-04-19 13:04:09 -0500
commit86b689f3d7111a9fa13da389a30f3dfdf877d1a4 (patch)
treed72b065f9f987e291f892ceee5a8640363bfd9df /cs/step3_env.cs
parent718887c3019c49fc807bc18fbd5feb975ec03c85 (diff)
downloadmal-86b689f3d7111a9fa13da389a30f3dfdf877d1a4.tar.gz
mal-86b689f3d7111a9fa13da389a30f3dfdf877d1a4.zip
All: *ARGV* and *host-language*. Misc syncing/fixes.
Diffstat (limited to 'cs/step3_env.cs')
-rw-r--r--cs/step3_env.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cs/step3_env.cs b/cs/step3_env.cs
index ba859eb..2be7992 100644
--- a/cs/step3_env.cs
+++ b/cs/step3_env.cs
@@ -92,7 +92,7 @@ namespace Mal {
return printer._pr_str(exp, true);
}
- // REPL
+ // repl
static MalVal RE(Env env, string str) {
return EVAL(READ(str), env);
}
@@ -119,6 +119,8 @@ namespace Mal {
if (args.Length > 0 && args[0] == "--raw") {
Mal.readline.mode = Mal.readline.Mode.Raw;
}
+
+ // repl loop
while (true) {
string line;
try {