Answers for "constant in go"

Go
0

Constant in Go

const lightSpeed = 299792458 // initial value

// Error! Constants cannot be changed
lightSpeed = 299792460
Posted by: Guest on June-16-2022

Browse Popular Code Answers by Language