Go Get Going
Note: In Go, any executable code belongs to the main package.
Hello world in go: ๐
package main
import("fmt")
func main(){
fmt.println("Hello world")
}
Go Statements: ๐งพ
Hitting the Enter key adds ";" to the end of the line implicitly (does not s...
fromhimalayas.hashnode.dev2 min read