Google Go HelloWorld Example Program
2009
22
Nov
code
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
)
Similar Posts
Related Searches

Comments
Post new comment