Files
test/main.go
Slayder12 c589d609c5
All checks were successful
Go / test (push) Successful in 1m15s
test
2025-12-16 19:53:10 +03:00

18 lines
161 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"
}