learn-go-with-tests/hello.go
2022-01-26 14:26:03 +00:00

12 lines
114 B
Go

package main
import "fmt"
func Hello() string {
return "Hello, world"
}
func main() {
fmt.Println(Hello())
}