/****************************************************************************** * This program simply copies an input stream to the console line by line. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ fn main() { let mut line:&str = ""; while getline(line) { println!("{}", line); } }