greeter/package.go
2022-03-22 15:58:28 +01:00

8 lines
71 B
Go

package greeter
import "fmt"
func Greet() {
fmt.Println("Hello!")
}