1
0
mirror of https://gitlab.com/MisterBiggs/aoc2021.git synced 2025-08-03 03:41:25 +00:00
This commit is contained in:
2021-12-01 22:51:03 -07:00
parent 6b57a0330a
commit 3f4182acf4
7 changed files with 1111 additions and 0 deletions

8
day2/rust/Cargo.toml Normal file
View File

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

3
day2/rust/src/main.rs Normal file
View File

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