Skip to content

Instantly share code, notes, and snippets.

@sahajre
Created August 1, 2019 07:55
Show Gist options
  • Save sahajre/b7854cc14ecac5321bdd6f17bce03376 to your computer and use it in GitHub Desktop.
Save sahajre/b7854cc14ecac5321bdd6f17bce03376 to your computer and use it in GitHub Desktop.
// package main includes the main function of Go program
package main
import "fmt"
/* this program demonstrates line comment using // above
and this block comment in Go programs */
func main() {
fmt.Println("Hello, 世界")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment