add lila source example files

This commit is contained in:
Romain Paquet 2023-10-16 22:36:33 +02:00
parent 86d4f7fffb
commit 374daaff7f
8 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,9 @@
fn foo(a: int) int {
b = baz(a);
b
}
fn baz(b: int) int {
a = foo(b);
a
}