Skip to content

Instantly share code, notes, and snippets.

@nikita8
Created November 13, 2018 04:04
Show Gist options
  • Save nikita8/717fbc1d4f0b16da08cdbde225d71a3a to your computer and use it in GitHub Desktop.
Save nikita8/717fbc1d4f0b16da08cdbde225d71a3a to your computer and use it in GitHub Desktop.
CommentingInGo
package main
import "fmt"
func main(){
fmt.Println("Commenting in Go")
// this is single line comment in Go
/* this is multiline
Comment in Go */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment