Initial project skeleton

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-11-30 08:08:37 -05:00
parent 2c8c4408b9
commit f8efc44443
2 changed files with 11 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
[package]
name = "day-01"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}