box-o-sand/scarytxt/src/main.rs

6 lines
59 B
Rust
Raw Normal View History

2020-12-18 23:44:11 +00:00
pub mod game;
2020-11-26 17:17:55 +00:00
2020-12-18 23:44:11 +00:00
fn main() {
game::Game::new().play();
2020-11-26 00:39:30 +00:00
}