-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
32 lines (28 loc) · 1.01 KB
/
Program.cs
File metadata and controls
32 lines (28 loc) · 1.01 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
using ConsoleAppLink;
using ConsoleAppLink.NameManager;
using System.Data;
internal class Program
{
public static bool Debug = true;
public static bool Doing = true;
public static bool Entering = true;
// String.Empty parses Link Header Alternates
public static char ArgumentSeparator = ' ';
public static char ElementSeparator = '.';
public static char GreatBinder = '>';
public static char LeastBinder = '<';
public static char DelegateBinder = ';';
public static char PathSeparator = '/';
public static char CueingStatement = '¿';
public static char QueuingStatement = '?';
public static KeyPosition AKeyRow = new KeyPosition();
private static async Task Main ( string [ ] args )
{
Console.Title = "{ \"KDRCA\" : { \"Key\" : { \"Dat\" : [ Row, Col ] }, \"App\" } } KDRCA by CaalRoe (A StealWhool Product)";
while ( Doing )
{
AKeyRow.CueQue ( );
await AKeyRow.Do ( );
}
}
}