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 18, 2024
1 parent 3d43d1d commit e29a4e6
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions examples/a.glx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
def main( ) -> int:
int num := 3;
int quatro := num + 1;
return quatro;
end;
def tigres_de_bengala( int numero) -> int:
int num := numero;
int quatro := num + 1;
return numero ;
end;

def main( ) -> int:
int num := 3;
int quatro := num + 1;
return tigres_de_bengala( quatro) ; ;
end;

0 comments on commit e29a4e6

Please sign in to comment.