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
}
Answer
🚧 Answer not written yet.
func main() {
var x float32 = 13.5
var y int
y = x
}
🚧 Answer not written yet.