1
0
Fork 0

Refactoring of the project tree. Added Adventofcode 2023.

This commit is contained in:
Yohan Boujon 2023-12-01 14:43:16 +01:00
parent cdcbb1a367
commit e8ec79650e
44 changed files with 18 additions and 0 deletions

7
2023/rust/day1/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "day1"
version = "0.1.0"

View file

@ -0,0 +1,8 @@
[package]
name = "day1"
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!");
}