1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/fsharp/readline.fs
2015-02-23 22:22:58 -06:00

17 lines
327 B
Forth

module Readline
open System
open Mono.Terminal
type Mode =
| Terminal
| Raw
let read prompt = function
| Terminal
-> let editor = LineEditor("Mal")
editor.Edit(prompt, "")
| Raw
-> Console.Write(prompt)
Console.Out.Flush()
Console.ReadLine()