drone-with-go/main.go
jackspirou aaa07a77dc init
2016-01-29 16:23:00 -06: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"
}