package main
import "fmt"
const Pi = 3.14159
func main() {
const s = "go"
fmt.Println(s)
// s = "abc" // Error: cannot assign to s
fmt.Println(Pi);
const b = true
fmt.Println(b)
// const t := "temp" // syntax error: unexpected :=, expecting =
}
/*
run:
go
3.14159
true
*/