first commit
This commit is contained in:
commit
0bc11cef68
7 changed files with 33 additions and 0 deletions
2
src/lib.rs
Normal file
2
src/lib.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#![allow(non_snake_case)]
|
||||
pub mod problem01;
|
||||
7
src/main.rs
Normal file
7
src/main.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use tAoC2022::problem01;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
problem01::solutionA();
|
||||
problem01::solutionB();
|
||||
}
|
||||
7
src/problem01/mod.rs
Normal file
7
src/problem01/mod.rs
Normal 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");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue