Skip to content

Instantly share code, notes, and snippets.

@baisa
Created September 16, 2016 19:37
Show Gist options
  • Save baisa/21cdb3f1f751fb910f360b221f698918 to your computer and use it in GitHub Desktop.
Save baisa/21cdb3f1f751fb910f360b221f698918 to your computer and use it in GitHub Desktop.
package main
import "golang.org/x/tour/pic"
func Pic(dx, dy int) [][]uint8 {
ret := make([][]uint8, dy)
for y := 0; y < dy; y++ {
row := make([]uint8, dx)
for x := 0; x < dx; x++ {
row[x] = uint8(y)
}
ret[y] = row
}
return ret
}
func main() {
pic.Show(Pic)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment