In Go, you can use the const keyword to create constants. Here are specific examples:
goconst Pi = 3.14
You can also define multiple constants within a const block:
goconst ( StatusOK = 200 StatusNotFound = 404 )
Constants can be of character, string, boolean, or numeric types, and once defined, their values cannot be modified.