mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 17:04:50 +00:00
16 lines
281 B
Rust
16 lines
281 B
Rust
use std::io;
|
|
|
|
fn main() {
|
|
for line in io::stdin().lock().lines() {
|
|
print!("{}", line.unwrap());
|
|
}
|
|
}
|
|
|
|
//fn main() {
|
|
// let mut reader = io::stdin();
|
|
// let mut line;
|
|
// loop {
|
|
// line = reader.read_line();
|
|
// print!("{}\n", line);
|
|
// }
|
|
//}
|