From cf2a11b39f7475c23d5e889b1de176a0968e636f Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 24 Jan 2024 15:43:46 +0000 Subject: [PATCH] fix(sortwordarr): fix the main.go used in the code editor --- subjects/sortwordarr/main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subjects/sortwordarr/main.go b/subjects/sortwordarr/main.go index 6c3c082a..eadc7e89 100644 --- a/subjects/sortwordarr/main.go +++ b/subjects/sortwordarr/main.go @@ -2,10 +2,12 @@ package main import ( "fmt" + "piscine" ) func main() { result := []string{"a", "A", "1", "b", "B", "2", "c", "C", "3"} - SortWordArr(result) + piscine.SortWordArr(result) + fmt.Println(result) }