fix(sortwordarr): fix the main.go used in the code editor

This commit is contained in:
miguel 2024-01-24 15:43:46 +00:00 committed by MSilva95
parent 59e16e508e
commit cf2a11b39f
1 changed files with 3 additions and 1 deletions

View File

@ -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)
}