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 Grinning )

Similar Posts
Related Searches




Comments

Post new comment

The content of this field is kept private and will not be shown publicly.