File tree 1 file changed +9
-4
lines changed 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,16 @@ public class Compiler
24
24
25
25
public static void Main ( string [ ] args )
26
26
{
27
- // ConsoleExtended.WriteLineWithDelay( "SuperCool Compiler Platform" );
28
- // ConsoleExtended.WriteLineWithDelay( "Copyright (C) Jose Ariel Romero & Jorge Yero Salazar & Jose Diego Menendez del Cueto. All rights reserved." );
29
- // Console.WriteLine();
27
+ ConsoleExtended . WriteLineWithDelay ( "SuperCool Compiler Platform" ) ;
28
+ ConsoleExtended . WriteLineWithDelay ( "Copyright (C) Jose Ariel Romero & Jorge Yero Salazar & Jose Diego Menendez del Cueto. All rights reserved." ) ;
29
+ Console . WriteLine ( ) ;
30
30
31
- args = new [ ] { "..\\ ..\\ ..\\ ..\\ ..\\ tests\\ SuperCOOL.Tests\\ Examples\\ Cool\\ hello_world.cl" } ;
31
+ //args = new[] { "..\\..\\..\\..\\..\\tests\\SuperCOOL.Tests\\Examples\\Cool\\hello_world.cl" };
32
+ if ( args . Length == 0 )
33
+ {
34
+ Console . WriteLine ( "I need something to compile..." ) ;
35
+ return ;
36
+ }
32
37
33
38
var Errors = Compile ( args , out var Code , out var limits ) ;
34
39
//PrintErrors
You can’t perform that action at this time.
0 commit comments