Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Last active October 11, 2019 16:06
Show Gist options
  • Save parvezmrobin/6d6c8da7917a02888e6b14b857e5293d to your computer and use it in GitHub Desktop.
Save parvezmrobin/6d6c8da7917a02888e6b14b857e5293d to your computer and use it in GitHub Desktop.
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