Closed
Description
(Tiny papercut)
e.g. the first example in std::io
is
use std::io;
for line in io::stdin().lines() {
print!("{}", line.unwrap());
}
but the data sent to playpen has a pointless extern crate std;
:
extern crate std;
fn main() {
use std::io;
for line in io::stdin().lines() {
print!("{}", line.unwrap());
}
}