Initial commit Changes to be committed: new file: 2022/day01/calorie_count.rs new file: 2022/day01/day01_algo.docx new file: 2022/day01/input.txt
11 lines
193 B
Rust
11 lines
193 B
Rust
use std::io::prelude::*;
|
|
use std::fs;
|
|
use std::path::*;
|
|
|
|
fn main() {
|
|
let mut _max_cals = 0;
|
|
let path = Path::new("input.txt");
|
|
let display = path.display();
|
|
|
|
let mut file
|
|
}
|