Google Go HelloWorld Example Program
Google Go Hello World
File : hello.go
package main
import "fmt"
func main() {
fmt.Printf("Hello World !!! \n")
}
Compiling & Running
8g hello.go
8l hello.8
./8.out
Output
Hello World !!!
(Obviously :D )
22 Nov, 2009