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
+6.3k Golang : Spell checking with ispell example
+9.1k Mac OSX : Get a process/daemon status information
+7.5k Golang : Scan files for certain pattern and rename part of the files
+10.7k Golang : Fix go.exe is not compatible with the version of Windows you're running
+9.2k Golang : Qt Yes No and Quit message box example
+14.3k Golang : Get URI segments by number and assign as variable example
+10.6k Nginx : TLS 1.2 support
+4.4k Golang : How to pass data between controllers with JSON Web Token
+26.8k Golang : Find files by name - cross platform example
+19.1k Golang : Get current URL example
+6.8k Golang : Squaring elements in array
+4.8k Python : Convert(cast) bytes to string example