drone-with-go/main.go
surtur 1c7e99f50a
Some checks failed
continuous-integration/drone/push Build is failing
dumb change
2020-02-27 19:20:27 +01:00

13 lines
199 B
Go

package main
import "fmt"
func main() {
fmt.Println(HelloWorld())
}
// HelloWorld is a function that returns a string containing "hello world".
func HelloWorld() string {
return "Hello world"
}