16 lines
199 B
Go
16 lines
199 B
Go
// ## Constants
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
// Use `const` to declare a constant value.
|
|
// Constants can be ...
|
|
const x string = "Hello World"
|
|
|
|
func main() {
|
|
fmt.Println(x)
|
|
}
|
|
|
|
// todo: research
|