😀 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>