emoji-d

🙂📚 Unicode Emoji enum library


Keywords
library, generic, nogc, gui, d, emoji, emoji-library, emojilib, unicode-emoji
License
Unlicense
Install
dub fetch emoji-d --version 11.0.2

Documentation

🙂📚 Emoji-D

Unicode Emoji enum library for the D Programming Language.

This library has been generated with the bundled list processor.

Usage

Just add this library as dependency to your DUB project file.

import std.stdio;
import emojid;

void main()
{
    writeln(cast(string)(Smileys.slightlySmilingFace));
    
    string message = "Hello World " ~ People.wavingHand;
    writeln(message);
}