Go

What is the problem with the following block of code? How to fix it?

func main() {
    var x float32 = 13.5
    var y int
    y = x
}

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

🚧 Answer not written yet.