Initial Commit
This commit is contained in:
commit
990e0dd50a
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Ignore the binary
|
||||||
|
emt
|
45
main.go
Normal file
45
main.go
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
var emoticons map[string]string
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
initEmoticons()
|
||||||
|
// We default to "shrug"
|
||||||
|
emt := "¯\\_(ツ)_/¯"
|
||||||
|
if len(os.Args) > 1 {
|
||||||
|
which := os.Args[1]
|
||||||
|
fmt.Println(which)
|
||||||
|
if which == "help" {
|
||||||
|
for k, v := range emoticons {
|
||||||
|
fmt.Println(k, v)
|
||||||
|
}
|
||||||
|
os.Exit(0)
|
||||||
|
} else {
|
||||||
|
if i, ok := emoticons[which]; ok {
|
||||||
|
emt = i
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fmt.Println(emt)
|
||||||
|
}
|
||||||
|
|
||||||
|
func initEmoticons() {
|
||||||
|
emoticons = make(map[string]string)
|
||||||
|
emoticons["bat"] = "~°·_·°~"
|
||||||
|
emoticons["bomb"] = "●~*"
|
||||||
|
emoticons["fish"] = ">°)))彡"
|
||||||
|
emoticons["flip"] = "(╯°□°)╯︵ ┻━┻"
|
||||||
|
emoticons["lenny"] = "( ͡° ͜ʖ ͡°)"
|
||||||
|
emoticons["octopus"] = "<コ:彡"
|
||||||
|
emoticons["shrug"] = "¯\\_(ツ)_/¯"
|
||||||
|
emoticons["smirk"] = "( ͡° ͜ʖ ͡°)"
|
||||||
|
emoticons["snake"] = "~>°)~~~"
|
||||||
|
emoticons["squid"] = "C:.ミ"
|
||||||
|
emoticons["star"] = "☆彡"
|
||||||
|
emoticons["tadpole"] = "(°°)~"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user