Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2c3a24a
Fix #34 - https://tour.golang.org/moretypes/1
AlMishbah Feb 8, 2020
ca01dcd
Fix #34 - https://tour.golang.org/moretypes/2
AlMishbah Feb 8, 2020
ae68c37
Fix #34 - https://tour.golang.org/moretypes/3
AlMishbah Feb 8, 2020
66322a3
Fix #34 - https://tour.golang.org/moretypes/4
AlMishbah Feb 8, 2020
a5dc656
Fix #34 - https://tour.golang.org/moretypes/5
AlMishbah Feb 8, 2020
12905ba
Fix #34 - https://tour.golang.org/moretypes/6
AlMishbah Feb 8, 2020
85a79ba
Fix #34 - https://tour.golang.org/moretypes/7
AlMishbah Feb 8, 2020
2d21fc4
Fix #34 - https://tour.golang.org/moretypes/8
AlMishbah Feb 8, 2020
1526cd5
Fix #34 - https://tour.golang.org/moretypes/9
AlMishbah Feb 8, 2020
d2cb8b2
Fix #34 - https://tour.golang.org/moretypes/10
AlMishbah Feb 8, 2020
7045a61
Fix #34 - https://tour.golang.org/moretypes/11
AlMishbah Feb 10, 2020
3824c13
Fix #34 - https://tour.golang.org/moretypes/12
AlMishbah Feb 10, 2020
12465cb
Fix #34 - https://tour.golang.org/moretypes/13
AlMishbah Feb 10, 2020
137feb3
Fix #34 - https://tour.golang.org/moretypes/14
AlMishbah Feb 10, 2020
a9b909a
Fix #34 - https://tour.golang.org/moretypes/15
AlMishbah Feb 10, 2020
4d26335
Fix #34 - https://tour.golang.org/moretypes/16
AlMishbah Feb 10, 2020
8f0f2dd
Fix #34 - https://tour.golang.org/moretypes/17
AlMishbah Feb 10, 2020
b022bf1
Fix #34 - https://tour.golang.org/moretypes/18
AlMishbah Feb 10, 2020
a76fcdd
Fix #34 - https://tour.golang.org/moretypes/19
AlMishbah Feb 10, 2020
0a5e305
Fix #34 - https://tour.golang.org/moretypes/20
AlMishbah Feb 10, 2020
8d93cd7
Fix #34 - https://tour.golang.org/moretypes/21
AlMishbah Feb 10, 2020
033e8b3
Fix #34 - https://tour.golang.org/moretypes/22
AlMishbah Feb 10, 2020
54aa24e
Fix #34 - https://tour.golang.org/moretypes/24
AlMishbah Feb 10, 2020
c62f2cf
Fix #34 - https://tour.golang.org/moretypes/23
AlMishbah Feb 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions roihan/moretypes_18.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package roihan

import "golang.org/x/tour/pic"

func Pic(dx, dy int) [][]uint8 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Implement ini dulu

}

func moretype18() {
pic.Show(Pic)
}
1 change: 1 addition & 0 deletions roihan/roihan.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ func Main() {
moretype15()
moretype16()
moretype17()
// moretype18()
}

func basics1() {
Expand Down