1
0
Fork 0
Advent2022/Day 1/part1.rs

8 lines
144 B
Rust
Raw Normal View History

2022-12-07 22:24:53 +00:00
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main(){
let input = "input.txt";
let file = File::open(input).unwrap();
}