8 lines
94 B
Text
8 lines
94 B
Text
|
|
fn foo(n: int) -> str {
|
|
if n % 2 == 0 {
|
|
"foo"
|
|
} else {
|
|
"bar"
|
|
}
|
|
}
|