helixir 0.1.9

Interactive CLI tutorial for learning HelixDB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod app;
mod formatter;
mod lesson_types;
mod lessons;
mod ui;
mod validation;

use app::App;
use helixir_macros::parse_answers;

#[parse_answers]
fn main() {
    let mut app = App::new(lessons);
    app.run();
}