GO Hello World program
A simple GO program to display "Hello, World!" on the screen. Traditionally, the first program you write in any programming language is called a "Hello, World" program—a program that simply outputs Hello, World to your terminal.
Example
package main // Package Declaration, every Go program must start with it
// White Spaces or Newline or Tabs, Go mostly doesn't care about this
import "fmt" // import is a keyword use to include code fro other package
// fmt is package
// use of double quotes like this is known as String literal
/* ======Function Declration Starts==== */
func main(){ // all functions start with keyword func followed by name of function
fmt.Println("Hello World") //function inside fmt package called Println
}
/* ======Function Declration Ends====== */
The line starts with // is known as a comment. Comments are ignored by GO compiler.
You can use /* */ to write multiple line comments.
The main piece of our program line is:
fmt.Println("Hello World")
Println function called Under fmt package,
Most Helpful This Week
GO language program with an example of Hash Table
GO Program to Calculate Area of Rectangle and Square
Program in Go language to Program to Add Two Matrix Using Multi-dimensional Arrays
GO Program to find area and circumference of circle
How to use struct that is imported from another package?
Program in Go language to print Pascal's Triangle