Ejemplo n.º 1
0
 static void Main()
 {
     while (true)
     {
         string[] command = ConsoleRead.CommandInput();
         object   value   = CommandReader.FunctionCall(command[0], command);
         if (value != null)
         {
             Console.WriteLine($"Got -> {value}");
         }
     }
 }