We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e82cdb5 commit 2ffc1f5Copy full SHA for 2ffc1f5
1 file changed
ngi/Program.cs
@@ -1,14 +1,24 @@
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
+using System.IO;
5
using System.Text;
6
+using Naggum.Runtime;
7
8
namespace ngi
9
{
10
class Program
11
12
static void Main(string[] args)
13
14
+ Stream input = System.Console.OpenStandardInput();
15
+ for (; ; )
16
+ {
17
+ System.Console.Out.Write(">");
18
+ Object obj = Reader.Read(input);
19
+ System.Console.Out.WriteLine(obj.ToString());
20
+ }
21
+ input.Close();
22
}
23
24
0 commit comments