reid-llvm/examples/div_mod.reid
2025-07-23 14:59:51 +03:00

7 lines
94 B
Plaintext

// Arithmetic, function calls and imports!
fn main() -> u16 {
return (50 / 5 + 52 % 5);
}