8 lines
79 B
Text
8 lines
79 B
Text
|
fn compute() -> int {
|
||
|
return 42;
|
||
|
}
|
||
|
|
||
|
fn main() -> int {
|
||
|
return compute();
|
||
|
}
|