Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module github.com/footooreal/golang-united-school-homework-1/tree/solution

go 1.18

require github.com/kyokomi/emoji/v2 v2.2.9
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/kyokomi/emoji/v2 v2.2.9 h1:UWYkjplPZ4rMPvLxc+/e12/xTqoRcn55oUySkpZ554g=
github.com/kyokomi/emoji/v2 v2.2.9/go.mod h1:JUcn42DTdsXJo1SWanHh4HKDEyPaR5CqkmoirZZP9qE=
9 changes: 9 additions & 0 deletions solution.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package solution

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

func GetMessage() string {
return emoji.Sprint("Hello :world_map:!")
}