Last active
October 11, 2019 16:06
-
-
Save parvezmrobin/6d6c8da7917a02888e6b14b857e5293d 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 | |
k := 3 | |
c, python, java := true, false, "no!" | |
println(i, j, k, c, python, java) // 1 2 3 true false no! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment