reid-llvm/reid_src/arithmetic.reid
2025-07-20 21:26:50 +03:00

10 lines
138 B
Plaintext

// Arithmetic, function calls and imports!
fn main() -> u32 {
let value = 6;
let other = 15;
return value * other + 7 * value;
}