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,3 +1,5 @@
extern fn println(message: Any) -> Void
fn main() fn main()
let n = 1 + 2 * 3 + 4 let n = 1 + 2 * 3 + 4
println(n) println(n)

View File

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