Created
September 22, 2012 15:47
-
-
Save benevolent0505/3766582 to your computer and use it in GitHub Desktop.
「A Tour of Go」でGo言語を学ぶ(~#13) ref: http://qiita.com/items/9cefa2ad3eb5539c1527
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
0 0 0 false false false |
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
var x, y, z int = 1,2,3 | |
var c, python, java = true, false, "no!" |
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 | |
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