Skip to content

Instantly share code, notes, and snippets.

@alexwirz
Last active August 29, 2015 14:21
Show Gist options
  • Save alexwirz/b97050bd275805363ae7 to your computer and use it in GitHub Desktop.
Save alexwirz/b97050bd275805363ae7 to your computer and use it in GitHub Desktop.
read a list of integers from STDIN (hackerrank)
let list =
stdin.ReadToEnd().Split '\n'
|> Array.map(fun x -> int(x))
|> Array.toList
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment