ages-cli 0.0.1

Command-line tool for Sega Mega Drive development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ages_cli::Command;

fn main() {
    // TODO: Get the command via command-line argument parsing
    let command = Command::Hello;

    match command {
        Command::Hello => hello()
    }
}

// TODO: Move each command to a separate module and exposed in `lib.rs`
fn hello() {
    println!("Hello from Ages!")
}