Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 464 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 464 Bytes

🙂📚 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);
}