Initial commit

Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
main
TuDatTr 2022-12-01 12:50:10 +01:00
commit 86fb084454
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,8 @@
[package]
name = "day-1_calorie_counting"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# Advent of Code
```
.
├── 2022
│   └── day-1_calorie_counting
│   ├── Cargo.toml
│   └── src
│   └── main.rs
└── README.md
```