mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-24 03:35:39 +00:00
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");
|
|
}
|
|
}
|