-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.go
21 lines (20 loc) · 1.18 KB
/
image.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main
var (
FISH = []string{
" /`·.¸ \n"+
" /¸...¸`:· \n"+
" ¸.·´ ¸ `·.¸.·´) \n"+
" : © ):´; ¸ { \n"+
" `·.¸ `· ¸.·´\\`·¸) \n"+
" `\\\\´´\\¸.·´ \n"+
" \n"+
" ",
" \n"+
" /`·.¸ \n"+
" /¸...¸`:· \n"+
" ¸.·´ ¸ `·.¸.·} \n"+
" : © ):´; ¸ ( \n"+
" `·.¸ `· ¸.·´\\`·} \n"+
" `\\\\´´\\¸.·´ \n"+
" "}
)