Files
big-c/src/main.rs
Aryadev Chavali 3cdfde07fe game: module for gameplay
Skeleton currently, not much
2026-04-05 04:45:51 +01:00

12 lines
176 B
Rust

// permit dead code when not using clippy
#![cfg_attr(not(clippy), allow(dead_code))]
mod card;
mod game;
mod helper;
mod modes;
fn main() {
println!("Hello, world!");
}