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 ls_0/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module homework/wodowod

go 1.16

require github.com/kyokomi/emoji/v2 v2.2.8 // indirect
2 changes: 2 additions & 0 deletions ls_0/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/kyokomi/emoji/v2 v2.2.8 h1:jcofPxjHWEkJtkIbcLHvZhxKgCPl6C7MyjTrD4KDqUE=
github.com/kyokomi/emoji/v2 v2.2.8/go.mod h1:JUcn42DTdsXJo1SWanHh4HKDEyPaR5CqkmoirZZP9qE=
6 changes: 5 additions & 1 deletion ls_0/solution.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package solution

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

func GetMessage() string {
return ""
x := emoji.Sprint("Hello from :flag_pl:!")
return x
}
1 change: 1 addition & 0 deletions ls_0/solution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"fmt"
"strings"
"testing"
// "github.com/kyokomi/emoji/v2"
)

func TestGetMessage(t *testing.T) {
Expand Down