initial commit
This commit is contained in:
19
src/main.rs
Normal file
19
src/main.rs
Normal file
@@ -0,0 +1,19 @@
|
||||
#![allow(dead_code)]
|
||||
|
||||
use std::error::Error;
|
||||
|
||||
use console_blackjack::play;
|
||||
|
||||
use crate::{card_index::CardIndex, card_suit::CardSuit};
|
||||
|
||||
mod blackjack;
|
||||
mod card;
|
||||
mod card_index;
|
||||
mod card_suit;
|
||||
mod console_blackjack;
|
||||
mod decks;
|
||||
mod hand;
|
||||
|
||||
fn main() -> Result<(), Box<dyn Error>> {
|
||||
play()
|
||||
}
|
||||
Reference in New Issue
Block a user