Skip to content

Commit

Permalink
misc(dev): tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wesuRage committed Dec 22, 2024
1 parent c945a8d commit b83906c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions examples/a.glx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
extern int writeln( string) ;
extern string itos( int) ;

def main( ) -> int:

int N := 10;
N := 3;

for ( int i := 0; i < N; ++ i) :
writeln( "hello") ;
for ( int i := 0; i < 100000; ++ i) :
writeln( "val" ) ;
end;

return 0;
Expand Down

0 comments on commit b83906c

Please sign in to comment.