aboutsummaryrefslogtreecommitdiff
path: root/examples/text-adventure/main.rs
blob: 788c3d5c778ca439cfff545e17d7c4df7df5eea0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! A small example text adventure, the logic of which is implemented as a Free Monad based eDSL.
//! 
//! The goal of this game is to buy a sausage roll.

mod dsl;
mod logic;
mod side_effects;

fn main() {
    let game = logic::game();
}