printfn "What is your name?"
let noob = Console.ReadLine().Trim()
printfn "Take a seat, %s, and let's start coding a real life problem" noob
let rec createList currentList =
printfn "enter a student name or 'Enter/Return' to end input"
printfn "Don't forget to add your name, too :)"
match System.Console.ReadLine().Trim() with
createList (name :: currentList)
System.Console.Write "Non-recursive, Enter name or 'Enter/Return' to end input: "
System.Console.ReadLine())
|> Seq.takeWhile ((<>) "")
let nStudents = List.length names
printfn "Welcome to our coding class of %d students, %s :) " names.Length user