Assignment expressions working

This commit is contained in:
2024-11-22 22:59:04 -07:00
parent d0a71de566
commit 1114dc9490
2 changed files with 39 additions and 3 deletions

View File

@@ -3,5 +3,10 @@ fn doStuff() {
return 234.5;
};
return i;
}
i = 5;
// This comment is going to be ignored.
return i; // we returned here
}
doStuff();