rs-emoji-fromcode 0.1.0

Converts the emoji codes to emoji chars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io;
use std::process::ExitCode;

use rs_emoji_fromcode::stdin2codes2emojis2stdout;

fn sub() -> Result<(), io::Error> {
    stdin2codes2emojis2stdout()
}

fn main() -> ExitCode {
    sub().map(|_| ExitCode::SUCCESS).unwrap_or_else(|e| {
        eprintln!("{e}");
        ExitCode::FAILURE
    })
}