mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 02:45:44 +03:00
28 lines
1019 B
Nim
28 lines
1019 B
Nim
import strutils, sequtils, tables, types
|
|
|
|
proc str_handle(x: string, pr = true): string =
|
|
if x.len > 0 and x[0] == '\xff':
|
|
result = ":" & x[1 .. x.high]
|
|
elif pr: result = "\"" & x.replace("\\", "\\\\").replace("\"", "\\\"").replace("\n", "\\n") & "\""
|
|
else: result = x
|
|
|
|
proc pr_str*(m: MalType, pr = true): string =
|
|
case m.kind
|
|
of Nil: result = "nil"
|
|
of True: result = "true"
|
|
of False: result = "false"
|
|
of Fun: result = "#<function>"
|
|
of MalFun: result = "#<malfun>"
|
|
of Atom: result = "(atom " & m.val.pr_str & ")"
|
|
of Symbol: result = m.str
|
|
of String: result = m.str.str_handle(pr)
|
|
of Number: result = $m.number
|
|
of List: result = "(" & m.list.mapIt(string, it.pr_str(pr)).join(" ") & ")"
|
|
of Vector: result = "[" & m.list.mapIt(string, it.pr_str(pr)).join(" ") & "]"
|
|
of HashMap:
|
|
result = "{"
|
|
for key, val in m.hash_map.pairs:
|
|
if result.len > 1: result.add " "
|
|
result.add key.str_handle & " " & val.pr_str(pr)
|
|
result.add "}"
|