From 6293378bb84702e9cbfc392158114c07d23d9642 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Wed, 24 Aug 2022 14:19:10 +0200 Subject: ... --- repl/repl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repl') diff --git a/repl/repl.go b/repl/repl.go index 5537174..41bfe79 100644 --- a/repl/repl.go +++ b/repl/repl.go @@ -46,7 +46,7 @@ func Start(in io.Reader, out io.Writer) { } } -const MONKEY_FACE = ` __,__ +const monkeyFace = ` __,__ .--. .-" "-. .--. / .. \/ .-. .-. \/ .. \ | | '| / Y \ |' | | @@ -60,7 +60,7 @@ const MONKEY_FACE = ` __,__ ` func printParserErrors(out io.Writer, errors []string) { - io.WriteString(out, MONKEY_FACE) + io.WriteString(out, monkeyFace) io.WriteString(out, "Woops! We ran into some monkey business here!\n") io.WriteString(out, " parser errors:\n") for _, msg := range errors { -- cgit v1.2.3