Hello, I want to know how to take input from the console of the form :
M 14 65 99 in nemerle. In C# I am doing this by :
string[] input = System.Console.ReadLine().Split(' ');
ch = System.Char.Parse(input[0]);
a = System.Int32.Parse(input[1]);
d = System.Int32.Parse(input[2]);
m = System.Int32.Parse(input[3]);
But this is not working in Nemerle. Please suggest me how to do it in Nemerle.