-
Notifications
You must be signed in to change notification settings - Fork 0
/
clt23.go
36 lines (28 loc) · 1.57 KB
/
clt23.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package main
import (
"bytes"
"fmt"
"io"
"os"
_ "embed"
)
//go:embed gopher.ascii
var gopher []byte
var message = `
██╗ ██╗███████╗██╗ ██╗ ██████╗██╗ ████████╗██████╗ ██████╗ ██╗
██║ ██║██╔════╝╚██╗ ██╔╝ ██╔════╝██║ ╚══██╔══╝╚════██╗╚════██╗██║
███████║█████╗ ╚████╔╝ ██║ ██║ ██║ █████╔╝ █████╔╝██║
██╔══██║██╔══╝ ╚██╔╝ ██║ ██║ ██║ ██╔═══╝ ╚═══██╗╚═╝
██║ ██║███████╗ ██║ ╚██████╗███████╗██║ ███████╗██████╔╝██╗
╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝╚══════╝╚═╝ ╚══════╝╚═════╝ ╚═╝
Welcome CLT 2023 visitor!
If you are interested in Go and cloud infrastructure topics, please visit us at
https://golangleipzig.space - our meetups are fun and well documented, it's not
far by 🚂 and we also regularly stream our events so you can join us via 📱 or
🖳, too.
`
func main() {
fmt.Println(message)
_, _ = io.Copy(os.Stdout, bytes.NewReader(gopher))
fmt.Println("\nhttps://golangleipzig.space\n")
}