This commit is contained in:
jackspirou
2016-01-29 16:23:00 -06:00
parent da77b90adc
commit aaa07a77dc
5 changed files with 86 additions and 1 deletions

12
main.go Normal file
View File

@@ -0,0 +1,12 @@
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"
}