This commit is contained in:
Wesley Moore 2021-12-10 18:13:19 +10:00
parent e20c424b02
commit 3aa849f926
No known key found for this signature in database
GPG key ID: BF67766C0BC2D0EE
2 changed files with 11 additions and 0 deletions

8
2021/Cargo.toml Normal file
View file

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

3
2021/src/main.rs Normal file
View file

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