-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
51 lines (47 loc) · 1.22 KB
/
Program.cs
File metadata and controls
51 lines (47 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Diagnostics;
using System.IO;
namespace NARDIAC
{
class Program
{
static void Main(string[] args)
{
try
{
Main_Impl(args);
}
catch (Exception e) when (!Debugger.IsAttached)
{
Console.Error.WriteLine(e.GetType().Name);
Console.Error.WriteLine("-------");
Console.Error.WriteLine(e.Message);
Console.Error.WriteLine(e.StackTrace);
Environment.Exit(1);
}
}
static void Main_Impl(string[] args)
{
Computer c;
if (args.Length == 0)
{
c = new Computer(new ConsoleInput(), new ConsoleOutput());
}
else if (args.Length == 1)
{
c = new Computer(new FileInput(File.OpenText(args[0])), new ConsoleOutput());
}
else
{
Usage();
Environment.Exit(1);
return;
}
c.Run();
}
private static void Usage()
{
Console.Error.WriteLine("NARDIAC [inputFile]");
}
}
}