Deep Drive On Constants
If you wanted to find out whether const was a keyword, how would you do so?
package main
import (
"fmt"
)
const
func main() {
fmt.Println("Hello, playground")
}
The Go Programming Language Specification is a great place to start. The Keyw...
blog.cloudnativefolks.org2 min read