mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
17 lines
327 B
Forth
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()
|