Initial code outline #4

Merged
wesley merged 1 commits from code-outline into development 2026-01-10 12:13:39 -05:00
6 changed files with 19 additions and 2 deletions
Showing only changes of commit 51426486e5 - Show all commits

0
src/card.rs Normal file
View File

0
src/deck.rs Normal file
View File

0
src/gamestate.rs Normal file
View File

0
src/hand.rs Normal file
View File

12
src/lib.rs Normal file
View File

@@ -0,0 +1,12 @@
use std::error::Error;
mod card;
mod hand;
mod deck;
mod gamestate;
pub fn run() -> Result<(), Box<dyn Error>> {
println!("Hello, world!");
Ok(())
}

View File

@@ -1,3 +1,8 @@
fn main() {
println!("Hello, world!");
use blackjack::run;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
run()?;
Ok(())
}