first commit

This commit is contained in:
Thorn Avery 2022-11-30 16:03:34 +11:00
commit 0bc11cef68
7 changed files with 33 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
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 = "tAoC2022"
version = "0.1.0"

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "tAoC2022"
version = "0.1.0"
edition = "2021"
[dependencies]

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# tAoC2022
this readme intentionally left blank

2
src/lib.rs Normal file
View file

@ -0,0 +1,2 @@
#![allow(non_snake_case)]
pub mod problem01;

7
src/main.rs Normal file
View file

@ -0,0 +1,7 @@
use tAoC2022::problem01;
fn main() {
println!("Hello, world!");
problem01::solutionA();
problem01::solutionB();
}

7
src/problem01/mod.rs Normal file
View file

@ -0,0 +1,7 @@
pub fn solutionA() {
println!("this will eventually be a problem solution");
}
pub fn solutionB() {
println!("this will eventually be a problem solution... B");
}