Files
test/main.go
Slayder12 8e36cee8af initial
2025-12-02 14:32:08 +03:00

16 lines
117 B
Go

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