Initial Skeleton Code

Initial skeleton code to start basing development work off of.

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2026-01-10 12:13:39 -05:00
parent 96f9cc1d98
commit f71a9f2a29
6 changed files with 19 additions and 2 deletions

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(())
}