Files
hakorune/apps/tests/mir-store-load/main.hako

13 lines
200 B
Plaintext

// mir-store-load - exercise minimal StackSlot-based Load/Store
static box Main {
main() {
local x, y
x = 1
y = 2
x = x + y
return x // expect 3
}
}