Skip to content

Instantly share code, notes, and snippets.

@benevolent0505
benevolent0505 / file1.txt
Created September 20, 2012 15:21
「A Tour of Go」でGo言語を学ぶ(~#8) ref: http://qiita.com/items/71cc2b5ef7d8c939efa0
55
@benevolent0505
benevolent0505 / HelloWorld.go
Created September 19, 2012 16:10
「A Tour of Go」でGo言語を学ぶ ref: http://qiita.com/items/e44d71a29a14db07b335
package main
import "fmt"
func main() {
fmt.Println("The grass is always greener on the other side of the fence.\n")
fmt.Println("「隣の芝は青い」")
}