-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
45 lines (34 loc) · 1.13 KB
/
Program.cs
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
using System;
namespace Bem
{
public static class Menu
{
static void Main(string[] args)
{
MainMenu();
//Edit.Open("C:\\Users\\nulos\\Documentos\\GitHub\\SOIS-Explorer\\SØIS Explorer\\Management.cs");
}
public static void MainMenu()
{
Console.WriteLine("Welcome to version 0.0.1 of Bem - Bemol Editing Mediator \n \n" + "Write \"help\" to get started");
string I = Console.ReadLine() ?? "home";
Parsing.InitParser(I);
/*
switch (I)
{
case "home":
Utils.ClearLine(5);
Console.WriteLine();
MainMenu();
break;
case "help":
Console.WriteLine(Utils.Help("main"));
break;
case "edit":
Edit.Open("C:\\Users\\nulos\\Documentos\\GitHub\\Bem\\Utils.cs");
break;
}
*/
}
}
}