mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
8 lines
138 B
Rust
8 lines
138 B
Rust
use std::io;
|
|
use std::io::BufRead;
|
|
|
|
fn main() {
|
|
for line in io::stdin().lock().lines() {
|
|
print!("{}", line.unwrap());
|
|
}
|
|
}
|