Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 376 Bytes

File metadata and controls

21 lines (16 loc) · 376 Bytes

Sample Hello World Go Application

This is a simple Go application which simply prints out "Hello, world!".

Language Version
  • Golang v1.23.2

Getting Started

Running ./hello-world.go directly:

$ go run hello-world.go
Hello, world!

Compiling ./hello-world.go as an executable:

$ go build hello-world.go
$ ./hello-world
Hello, world!