main: Represent the Gecko banner without escape strings

Purely cosmetic, included only because it was bugging me. Please feel
free to reject it, with no hard feelings.
This commit is contained in:
Alex Willmer 2020-05-13 22:06:44 +01:00
parent f290f7377e
commit 07156719a1
1 changed files with 7 additions and 6 deletions

View File

@ -4,10 +4,11 @@
package main
const (
gecko = " ___ ________ __ ___\n" +
" / _ \\_/\\ / _____/ ____ ____ | | ______ / _ \\_/\\\n" +
" \\/ \\___/ / \\ ____/ __ \\_/ ___\\| |/ / _ \\ \\/ \\___/\n" +
" \\ \\_\\ \\ ___/\\ \\___| < <_> )\n" +
" \\______ /\\___ >\\___ >__|_ \\____/\n" +
" \\/ \\/ \\/ \\/"
gecko = "" +
` ___ ________ __ ___` + "\n" +
` / _ \_/\ / _____/ ____ ____ | | ______ / _ \_/\` + "\n" +
` \/ \___/ / \ ____/ __ \_/ ___\| |/ / _ \ \/ \___/` + "\n" +
` \ \_\ \ ___/\ \___| < <_> )` + "\n" +
` \______ /\___ >\___ >__|_ \____/` + "\n" +
` \/ \/ \/ \/`
)