2013-04-04から1日間の記事一覧

A Tour of Go 59 Exercise: Images

演習:Image 型を定義して、 必要なメソッド を実装し、 pic.ShowImage を呼び出す。 よし出来た。オラわくわくして来たぞo(^o^o)(o^o^)o 最後の画像ジェネレーターの値 v は、 color.RGBA{v, v, 255, 255} のものと一致します。 上記は意味不明だったので無…

A Tour of Go 59 Exercise: Images (fix compile error, but not run ?)

演習:Image 型を定義して、 必要なメソッド を実装し、 pic.ShowImage を呼び出す。 なんとかコンパイルエラーは騙せたけど、エラーも含めて何も出力もされないw; Google Code Archive - Long-term storage for Google Code Project Hosting.を見る限り、…

A Tour of Go 59 Exercise: Images (compile error)

演習:Image 型を定義して、 必要なメソッド を実装し、 pic.ShowImage を呼び出す。 以下のようにRectangleが未定義とエラーになる。 何故?なんだ>< prog.go:5: imported and not used: "image" prog.go:12: undefined: Rectangle prog.go:17: undefined…