Skip to content

Instantly share code, notes, and snippets.

@ble
Created March 22, 2013 15:43
Show Gist options
  • Save ble/5222276 to your computer and use it in GitHub Desktop.
Save ble/5222276 to your computer and use it in GitHub Desktop.
func Pic(dx, dy int) [][]uint8 {
result := make([][]uint8, dy);
for y := 0; y < dy; y++ {
result[y] = make([]uint8, dx);
}
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment