Files
hakorune/local_tests/mir_static_main_arithmetic.nyash

12 lines
205 B
Plaintext
Raw Normal View History

// Test case for static Main arithmetic in MIR
static box Main {
init { }
main() {
local a, b, result
a = 10
b = 32
result = a + b
return result
}
}