This commit is contained in:
Pavel Flegr 2026-03-05 14:55:09 +01:00
commit 8f4f858d86
30 changed files with 9765 additions and 0 deletions

10
imports.go Normal file
View file

@ -0,0 +1,10 @@
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.ToUpper("gotlin"))
}