reid-llvm/examples/arithmetic.reid
2025-07-24 16:01:23 +03:00

10 lines
126 B
Plaintext

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