1
Fork 0

add missing import

This commit is contained in:
Nick Sweeting 2017-03-28 13:27:46 -04:00 committed by GitHub
parent 4806f01d7c
commit cd2ec7eded

View file

@ -150,6 +150,8 @@
//! on the return value to catch any possible errors: //! on the return value to catch any possible errors:
//! //!
//! ``` //! ```
//! use std::io;
//!
//! let mut input = String::new(); //! let mut input = String::new();
//! //!
//! io::stdin().read_line(&mut input).unwrap(); //! io::stdin().read_line(&mut input).unwrap();