pho 1.0.0

PHOnetic alphabet renderer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::{Parser};
use pho::render;

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
struct Cli {
    text: String
}


pub fn main() {
    let cli = Cli::parse();
    println!("{}", render(cli.text, " "))
}