зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
11 строки
195 B
Plaintext
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(())
|
|
}
|