Quick actions

cmd+k|ctrl+k

Navigation

Languages

Essential Go / Constants

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T10:09:25Z

Updated

2019-03-26T10:09:25Z

package main

// Greeting is an exported (public) string constant
const Greeting string = "Hello World"

// we can group const declarations
const (
	// years is an unexported (package private) int constant
	years int  = 10
	truth bool = true
)

func main() {
	// do  nothing
}
INFO