14 lines
182 B
Go
14 lines
182 B
Go
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
|