Files
gitea-test/main.go
gsr e19aa66848
Some checks failed
Go / test (push) Failing after 8s
📚 test
2026-03-24 15:46:46 +03:00

19 lines
162 B
Go
Executable File

package main
import (
"fmt"
)
func main() {
fmt.Println(hello())
fmt.Println(hello())
fmt.Println(hello())
}
func hello() string {
return "Hello go"
}