hello_world/
hello_world.rs

1use tegen::tegen::TextGenerator;
2
3fn main() {
4    let tg = TextGenerator::new();
5    println!(
6        "{}",
7        tg.generate("{Hello|Greetings|Salutations}, {World|Reality}!")
8    );
9}