mythoji 0.1.0

A minimal Rust crate that helps identify and display fantasy appropriate emojis
Documentation
1
2
3
4
5
6
7
8
9
10
use mythoji::Item;
use strum::IntoEnumIterator;

fn main() {
    println!("mythoji::Item::\n");

    for item in Item::iter() {
        println!("{:<25} = {}", format!("{:?}", item), item);
    }
}