8 lines
162 B
Rust
8 lines
162 B
Rust
use day3::analyze_memory;
|
|
|
|
fn main() {
|
|
if let Err(err) = analyze_memory("input.txt") {
|
|
println!("Failed to analyze memory because of {err}");
|
|
}
|
|
}
|