1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-02 09:21:40 +02:00
lazygit/vendor/github.com/kyokomi/emoji/v2
2022-03-18 21:36:28 +11:00
..
.gitignore parse github emoji config option 2021-07-16 14:06:01 +02:00
emoji_codemap.go parse github emoji config option 2021-07-16 14:06:01 +02:00
emoji.go parse github emoji config option 2021-07-16 14:06:01 +02:00
LICENSE parse github emoji config option 2021-07-16 14:06:01 +02:00
README.md parse github emoji config option 2021-07-16 14:06:01 +02:00
wercker.yml parse github emoji config option 2021-07-16 14:06:01 +02:00

Emoji

Emoji is a simple golang package.

wercker status Coverage Status GoDoc

Get it:

go get github.com/kyokomi/emoji/v2

Import it:

import (
	"github.com/kyokomi/emoji/v2"
)

Usage

package main

import (
	"fmt"

	"github.com/kyokomi/emoji/v2"
)

func main() {
	fmt.Println("Hello World Emoji!")

	emoji.Println(":beer: Beer!!!")

	pizzaMessage := emoji.Sprint("I like a :pizza: and :sushi:!!")
	fmt.Println(pizzaMessage)
}

Demo

demo

Reference

License

MIT