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