[5819ef]: / hello.go  Maximize  Restore  History

Download this file

11 lines (7 with data), 172 Bytes

1
2
3
4
5
6
7
8
9
// Our first program will print the classic "hello world"
// message. Here's the full source code.
package main
import "fmt"
func main() {
fmt.Println("hello world")
}