1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/skew/step0_repl.sk

25 lines
372 B
Plaintext
Raw Normal View History

def READ(str string) string {
return str
}
def EVAL(ast string, env StringMap<string>) string {
return ast
}
def PRINT(exp string) string {
return exp
}
def REP(str string) string {
return PRINT(EVAL(READ(str), {}))
}
@entry
def main {
var line string
while (line = readLine("user> ")) != null {
if line == "" { continue }
printLn(REP(line))
}
}