I am currently trying to learn F# better and I am using codingame as an source of programming quizzes.
Most of the quizess involves reading some values from stdin, like the first ten values on stdin will be ints, the next five will be strings.
Currently, I am using this function to read the data, but it feels very "un-f#".
let N = 5
let Reader i =
Console.In.ReadLine()
let words = [0..N-1] |> Seq.map Reader