learning-go/hello/hello.go

12 lines
118 B
Go
Raw Normal View History

2024-03-18 11:30:03 -05:00
package main
import "fmt"
func Hello() string {
return "Hello, world!"
}
func main () {
fmt.Println(Hello())
}