Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created October 11, 2019 16:39
Show Gist options
  • Save parvezmrobin/cfe5579a3e1f451b2ee5c676278fd668 to your computer and use it in GitHub Desktop.
Save parvezmrobin/cfe5579a3e1f451b2ee5c676278fd668 to your computer and use it in GitHub Desktop.
package main
func main() {
var i, j = 1, 2.3
println(i + j)
// invalid operation: i + j (mismatched types int and float64)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment