Concept Flow - Writing first Go program
Start program
Import fmt package
Define main function
Execute fmt.Println("Hello, world!")
Print output to screen
Program ends
The program starts, imports the fmt package for printing, runs the main function, prints the message, then ends.