Golang Hello World Example
This tutorial is dedicated to a young(11 years old by the time of writing) and upcoming programmer learning Golang in Malaysia. Happy learning and may you have a bright future in computer science field one day. Below is the simple Hello World tutorial you requested. :-)
Golang Hello World Example
package main
import "fmt"
func main() {
fmt.Println("Hello World! 你好世界!")
}
Output :
Hello World! 你好世界!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+16.9k Golang : convert int to string
+4.3k Golang : Extract unicode string from another unicode string example
+29.5k Golang : Validate IP address
+9.8k Golang : How to parse plain email text and process email header?
+23.7k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+32k Upload multiple files with Go
+8.9k Golang : Convert(cast) bigint to string
+11.2k Golang : How to filter a map's elements for faster lookup
+6.2k Golang : Executing and evaluating nested loop in html template
+47.6k Golang : Unmarshal JSON from http response
+6.3k Golang : Ackermann function example
+4.2k Linux/MacOSX : Search for files by filename and extension with find command