reid-llvm/examples/arithmetic.reid

12 lines
155 B
Plaintext

// Arithmetic, function calls and imports!
fn main() -> u32 {
let value = 0b110;
let other = 0o17;
let b = [5.0, 0.0 -5.0];
return value -1;
}