1 use std::io; 2 3 fn main() { 4 assert_eq!( 5 "So rested he by the Tumtum tree", 6 &io::read_to_string(io::stdin().lock()).unwrap() 7 ); 8 } 9