This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues/pull-requests.
advent-of-code-2022/src/main.rs

9 lines
110 B
Rust
Raw Normal View History

2022-12-05 14:08:57 +02:00
2022-12-02 01:29:16 +02:00
fn main() {
2022-12-02 13:07:53 +02:00
// day1::start();
2022-12-03 13:59:29 +02:00
// day2::start();
2022-12-04 12:23:54 +02:00
// day3::start();
2022-12-05 14:08:57 +02:00
// day4::start();
day5::start();
2022-12-02 01:29:16 +02:00
}