1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/fsharp/step1_read_print.fs
2015-03-26 14:05:02 -05:00

42 lines
921 B
Forth

module REPL
open System
let read input =
try
Reader.read_str input
with
| Types.ReaderError(msg) ->
printfn "%s" msg
[]
let eval ast =
Some(ast)
let print v =
v
|> Seq.singleton
|> Printer.pr_str
|> printfn "%s"
let rep input =
read input
|> Seq.ofList
|> Seq.map (fun form -> eval form)
|> Seq.filter Option.isSome
|> Seq.iter (fun value -> print value.Value)
let getReadlineMode (args : string array) =
if args.Length > 0 && args.[0] = "--raw" then
Readline.Mode.Raw
else
Readline.Mode.Terminal
[<EntryPoint>]
let rec main args =
let mode = getReadlineMode args
match Readline.read "user> " mode with
| null -> 0
| input ->
rep input
main args