Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created October 11, 2019 16:16
Show Gist options
  • Save parvezmrobin/e1076c0f6a962ecf60270d4431fa2c3b to your computer and use it in GitHub Desktop.
Save parvezmrobin/e1076c0f6a962ecf60270d4431fa2c3b to your computer and use it in GitHub Desktop.
package main
func main() {
i := 5
var j float32 = i // cannot use i (type int) as type float32 in assignment
println(j)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment