フォームのコンソールから入力を取得する方法を知りたい:
M 14 65 99 in nemerle. C#では、次の方法でこれを行っています:
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]);
しかし、これは Nemerle では機能しません。Nemerleでそれを行う方法を教えてください。