const 상수명 데이터_타입 = "내용"
package main
import "fmt"
func main() {
const name string = "AshCost"
fmt.Println(name)
}
상수명 := "내용"
package main
import "fmt"
func main() {
name := "AshCost"
fmt.Println(name)
}
string type
bool type
int type
해당 축약어 방식은 function 내 에서만 사용할 수 있다.