From 07156719a1300fef6877a5e18ede55646e00f4c5 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Wed, 13 May 2020 22:06:44 +0100 Subject: [PATCH] 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. --- main/constants.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/main/constants.go b/main/constants.go index 4c7f23b..3d84be5 100644 --- a/main/constants.go +++ b/main/constants.go @@ -4,10 +4,11 @@ package main const ( - gecko = " ___ ________ __ ___\n" + - " / _ \\_/\\ / _____/ ____ ____ | | ______ / _ \\_/\\\n" + - " \\/ \\___/ / \\ ____/ __ \\_/ ___\\| |/ / _ \\ \\/ \\___/\n" + - " \\ \\_\\ \\ ___/\\ \\___| < <_> )\n" + - " \\______ /\\___ >\\___ >__|_ \\____/\n" + - " \\/ \\/ \\/ \\/" + gecko = "" + + ` ___ ________ __ ___` + "\n" + + ` / _ \_/\ / _____/ ____ ____ | | ______ / _ \_/\` + "\n" + + ` \/ \___/ / \ ____/ __ \_/ ___\| |/ / _ \ \/ \___/` + "\n" + + ` \ \_\ \ ___/\ \___| < <_> )` + "\n" + + ` \______ /\___ >\___ >__|_ \____/` + "\n" + + ` \/ \/ \/ \/` )