binary expressions are working fully now

This commit is contained in:
2024-11-22 17:24:58 -07:00
parent e9675cd5d2
commit b5ee169a75
9 changed files with 203 additions and 50 deletions

View File

@@ -1,3 +1,14 @@
export fn doThings() {
power.myPowerItem(12.45 + 5);
fn myPowerItem(arg) {
}
fn doThings(x, y, z) {
let item = myPowerItem((12.45 + 5 * 123) ** 2);
let item2 = 5 + 2 - 5 + 123.24323 / 234 ** 21 - (15 / 2);
}
fn main() {
doThings(1, 2, 3)
}