op_prec example working.

This commit is contained in:
Jesse Brault 2026-03-15 16:20:55 -05:00
parent fa13697596
commit 0dce883dbd
2 changed files with 3 additions and 6 deletions

View File

@ -1,4 +1,6 @@
extern fn println(message: Any) -> Void
fn main()
let n = 1 + 2 * 3 + 4
println(n)
end
end

View File

@ -1,5 +0,0 @@
fn main() -> Void
$0 = 2 * 3
$1 = 1 + $0
$2 = $1 + 4
call std::core::println($2)