Skip to content

Commit

Permalink
update source lark file
Browse files Browse the repository at this point in the history
  • Loading branch information
manosriram committed Jul 14, 2024
1 parent bff1bb5 commit 8b67f61
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions source.lark
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
a <- (1+3)==2; // false
b <- true;
c <- -123;
e <- (1+2+3) + c + (3*1/10);
if (a==b) {
c <- "ok";
} else {
c <- "not_ok";
}
tt <- !false;
c <-> e;
a <-> c;

fn add[x, y] <<
return x+y;
>>
Expand Down

0 comments on commit 8b67f61

Please sign in to comment.