How to Print Hello World in Go (Golang) 🔥🔥🔥

Опубликовано: 23 Июль 2026
на канале: ThikHai
71
0

Hello, World! is the first basic program in any programming language. Let’s write the first program in the Go Language using the following steps:

First of all open Go compiler. In Go language, the program is saved with .go extension and it is a UTF-8 text file.

// First Go program
package main

import "fmt"

// Main function
func main() {
fmt.Println("!... Hello World ...!")
}


Output:
!... Hello World ...!