如何在 golang 的函数里面使用运行时的不可变量?
func needFloat(x float64) float64 {
    const c =  x * 0.1
    const d = c+ 0.2
    return  d
}

这段代码编译通不过,因为x是变量。如何让一个函数的所有量都是不可变量?

附上js的代码:


const needFloat = x => {
  const c = x * 0.1
  const d = c + 0.2
  return d
}

Preview:

Cancel