Stuard Gerardo Carrillo Gonzalez

Results 1 issues of Stuard Gerardo Carrillo Gonzalez

Taking the `std::fs::File` example I write ```rust use std::fs::File; use std::io::prelude::Write; use std::io::ErrorKind; fn main() { let mut f = File::open("story.txt").unwrap_or_else(|err| { if err.kind() == ErrorKind::NotFound { File::create("story.txt").unwrap() } else...