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
+14k Golang : Gin framework accept query string by post request example
+14.2k Golang : Reverse IP address for reverse DNS lookup example
+21k Golang : Convert date string to variants of time.Time type examples
+5.6k Unix/Linux/MacOSx : How to remove an environment variable ?
+5.6k Golang : What is StructTag and how to get StructTag's value?
+19.4k Golang : Delete item from slice based on index/key position
+14.5k Golang : On enumeration
+14.1k Golang : concatenate(combine) strings
+15.7k Golang : Find location by IP address and display with Google Map
+12.5k Golang : Validate email address
+19.7k Golang : Example for DSA(Digital Signature Algorithm) package functions
+10.9k Android Studio : Simple input textbox and intercept key example