-
Notifications
You must be signed in to change notification settings - Fork 23
/
util.go
23 lines (20 loc) · 1.06 KB
/
util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main
import (
"fmt"
)
const logo = `
+-------------+ +----+ +----+ +--------------+ +--------------+ +----+ +----+
| | | | | | | | | | | | | |
| +--------+ | | | | | +----+ | | +---------+ | | | |
| | | +----+ | | | | | | | | | | |
| +--------+ | | | | | | | | | | | |
| | | +----+ | | | | | | | | | | |
+--------+ | | | | | | | | | | | | +---+ +-+
| | | | | | | | | | | | | |
+--------+ | | | | | | +----+ | | +---------+ | +-----+ |
| | | | | | | | | | | | | |
+-------------+ +----+ +----+ +--------------+ +--------------+ +----+ +----+`
func printLogo() {
fmt.Println(logo)
return
}