first commit
This commit is contained in:
commit
0bc11cef68
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal 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
6
Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "tAoC2022"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
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…
Reference in a new issue