7 lines
92 B
Text
7 lines
92 B
Text
fn compute(x : int) -> int {
|
|
return 120 + x;
|
|
}
|
|
|
|
fn main() -> int {
|
|
return compute(3);
|
|
}
|