1
0
This commit is contained in:
2022-12-07 17:24:53 -05:00
parent f59de48e85
commit bc8d46dbc8
3 changed files with 2260 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main(){
let input = "input.txt";
let file = File::open(input).unwrap();
}