Go Language Examples | Hello World Example | Java Inspires



😀 Hi Guys,

Welcome to Java Inspires.

In this post, we will see simple go language hello world example. Lets start..


Screenshot:




helloworld.go

package main

import (
	"fmt"
)

func main() {
	fmt.Println("Hello Java Inspires ...")
}


Output:

PS D:\MyCode\go\helloworld> go run .\helloworld.go
Hello World ...
PS D:\MyCode\go\helloworld> 





Post a Comment

Previous Post Next Post