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

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");
}