]> git.proxmox.com Git - rustc.git/blame - src/doc/book/listings/ch09-error-handling/listing-09-03/src/main.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / doc / book / listings / ch09-error-handling / listing-09-03 / src / main.rs
CommitLineData
74b04a01
XL
1use std::fs::File;
2
3fn main() {
923072b8 4 let greeting_file_result = File::open("hello.txt");
74b04a01 5}