Skip to content

Instantly share code, notes, and snippets.

@benevolent0505
Created September 22, 2012 15:47
Show Gist options
  • Save benevolent0505/3766582 to your computer and use it in GitHub Desktop.
Save benevolent0505/3766582 to your computer and use it in GitHub Desktop.
「A Tour of Go」でGo言語を学ぶ(~#13) ref: http://qiita.com/items/9cefa2ad3eb5539c1527
0 0 0 false false false
var x, y, z int = 1,2,3
var c, python, java = true, false, "no!"
package main
import "fmt"
var x, y, z int
var c, python, java bool
func main() {
fmt.Println(x, y, z, c, python, java)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment