Last active
August 4, 2020 15:37
-
-
Save rchaganti/023b2d3ad10b4c53e997d58387d1ee2d to your computer and use it in GitHub Desktop.
Hello World in Go Language
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/* | |
all imports are specified right after package declaration | |
*/ | |
import "fmt" | |
// main function is the entry point | |
func main() { | |
fmt.Println("Hello World, let us Get Set GO!") //this is a print statement | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment