Source file tour/moretypes/exercise-slices.go

     1  // +build no-build OMIT
     2  
     3  package main
     4  
     5  import "golang.org/x/tour/pic"
     6  
     7  func Pic(dx, dy int) [][]uint8 {
     8  }
     9  
    10  func main() {
    11  	pic.Show(Pic)
    12  }
    13  

View as plain text