11 lines
131 B
Rust
11 lines
131 B
Rust
//@ check-pass
|
|
|
|
|
|
fn main() {
|
|
if ('x' as char) < ('y' as char) {
|
|
print!("x");
|
|
} else {
|
|
print!("y");
|
|
}
|
|
}
|