You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2025. It is now read-only.
Copy file name to clipboardexpand all lines: AutomataProcessor/Program.cs
+67-10
Original file line number
Diff line number
Diff line change
@@ -8,24 +8,80 @@ namespace AutomataProcessor
8
8
{
9
9
staticclassProgram
10
10
{
11
+
privatestaticvoidPrintHelp()
12
+
{
13
+
Console.WriteLine("General Usage:\n amta file_name [--lib lib_folder] [--debug] [--max_while_loops N]\n\nfile_name is the file which will be interpreted.\nThe function called when running is !main\n\n--lib lib_folder - specify another lib folder.\nDefault: ./lib\n\n--debug - print debug messages from AutoMaTA\n\n--max_while_loops N - specify maximum number of times a while block can run.\nIf you want to disable the limit, use -1\nDefault: 10000\n\namta --help");
14
+
}
15
+
11
16
publicstaticvoidMain(string[]args)
12
17
{
13
-
Logger.Print("Automata Processor\nMade by devilexe");
14
-
Logger.Debug(Directory.GetCurrentDirectory());
18
+
Logger.Print("Automata Processor\nMade by devilexe\n\n");
0 commit comments