mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
16 lines
281 B
Text
16 lines
281 B
Text
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);
|
|
// }
|
|
//}
|