Created
October 11, 2019 16:39
-
-
Save parvezmrobin/cfe5579a3e1f451b2ee5c676278fd668 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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