4 lines
78 B
Rust
4 lines
78 B
Rust
fn int_id(x: int) -> int { return x; }
|
|
|
|
fn main() { loop { int_id(break); } }
|