This commit is contained in:
2024-11-29 09:16:39 -07:00
parent 0bda3fb60d
commit 1e0f986cf1
3 changed files with 105 additions and 43 deletions

View File

@@ -1,13 +1,8 @@
fn test(a, b, c) {
fn doStuff(x, y, z) {
let i = x + y + z;
};
fn test2() {
test(1, 2, 3);
};
let i = 25;
let j = i + 25;
fn test3() {
test2();
};
test3();
doStuff(i, j, 100);