Answers for "const string golang"

Go
1

golang constant

// single constant
const (
  A = "A"
  B = "B"
)

// multiple constant
const (
  A, B = "A", "B"
  Monday, Sunday = "Monday", "Sunday"
)
Posted by: Guest on April-17-2022
0

Constants in golang

const Phi = 1.618
Posted by: Guest on December-29-2021

Browse Popular Code Answers by Language