12 lines
147 B
Plaintext
12 lines
147 B
Plaintext
// Arithmetic, function calls and imports!
|
|
|
|
fn other() -> i16 {
|
|
return 6;
|
|
}
|
|
|
|
fn main() -> u32 {
|
|
let value = other() as u32;
|
|
|
|
return value;
|
|
}
|