1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 09:38:28 +03:00
mal/impls/cs/step0_repl.cs

48 lines
1.1 KiB
C#
Raw Normal View History

using System;
using System.IO;
2014-04-07 07:13:14 +04:00
using Mal;
namespace Mal {
class step0_repl {
// read
static string READ(string str) {
return str;
}
// eval
static string EVAL(string ast, string env) {
return ast;
}
// print
static string PRINT(string exp) {
return exp;
}
// repl
static string RE(string env, string str) {
return EVAL(READ(str), env);
}
static void Main(string[] args) {
if (args.Length > 0 && args[0] == "--raw") {
Mal.readline.mode = Mal.readline.Mode.Raw;
}
// repl loop
while (true) {
string line;
try {
line = Mal.readline.Readline("user> ");
if (line == null) { break; }
if (line == "") { continue; }
} catch (IOException e) {
Console.WriteLine("IOException: " + e.Message);
break;
}
Console.WriteLine(PRINT(RE(null, line)));
}
}
}
}