Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

11 строки
195 B
Plaintext

from 1.26
https://github.com/rust-lang/rfcs/blob/master/text/1937-ques-in-main.md
use std::fs::File;
fn main() -> Result<(), std::io::Error> {
let f = File::open("bar.txt")?;
Ok(())
}