10 lines
139 B
Plaintext
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);
|
|
}
|