Skip to content

Instantly share code, notes, and snippets.

@SteveGilham
Created April 26, 2015 14:00
Show Gist options
  • Save SteveGilham/b1cb2dc37df4a9267bf7 to your computer and use it in GitHub Desktop.
Save SteveGilham/b1cb2dc37df4a9267bf7 to your computer and use it in GitHub Desktop.
Monadic character I/O
let GetC = IO (fun () -> System.Console.ReadKey(true).KeyChar)
let PutC (c:char) = IO (fun () -> System.Console.Write c) ;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment