RosettaCodeData/Task/Hello-world-Text/Go/hello-world-text.go

6 lines
72 B
Go
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
package main
2015-02-20 00:35:01 -05:00
import "fmt"
2015-11-18 06:14:39 +00:00
func main() { fmt.Println("Hello world!") }