reid-llvm/examples/float.reid
2025-07-25 00:32:49 +03:00

10 lines
139 B
Plaintext

// Arithmetic, function calls and imports!
pub fn test() -> u8 {
return 5;
}
pub fn main() -> bool {
return 7.5 > (test() as f16);
}