first commit

This commit is contained in:
Nico Fricke 2023-12-01 08:52:08 +01:00
commit b7187433ab
3 changed files with 16 additions and 0 deletions

5
Day01/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.idea
target
debug
Cargo.lock
**/*.rs.bk

8
Day01/Cargo.toml Normal file
View File

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

3
Day01/src/main.rs Normal file
View File

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