Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_12/goprogram
2015-03-03 12:25:25 -05:00

11 lines
104 B
Plaintext
Executable File

// goprogram.go
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World!")
}