diff --git a/repl/repl.go b/repl/repl.go index 9646b45..6bb0aeb 100644 --- a/repl/repl.go +++ b/repl/repl.go @@ -20,31 +20,6 @@ import ( ) const PROMPT = ">>> " -const ERROR_FACE = ` - ███████████████████████████ - ███████▀▀▀░░░░░░░▀▀▀███████ - ████▀░░░░░░░░░░░░░░░░░▀████ - ███│░░░░░░░░░░░░░░░░░░░│███ - ██▌│░░░░░░░░░░░░░░░░░░░│▐██ - ██░└┐░░░░░░░░░░░░░░░░░┌┘░██ - ██░░└┐░░░░░░░░░░░░░░░┌┘░░██ - ██░░┌┘▄▄▄▄▄░░░░░▄▄▄▄▄└┐░░██ - ██▌░│██████▌░░░▐██████│░▐██ - ███░│▐███▀▀░░▄░░▀▀███▌│░███ - ██▀─┘░░░░░░░▐█▌░░░░░░░└─▀██ - ██▄░░░▄▄▄▓░░▀█▀░░▓▄▄▄░░░▄██ - ████▄─┘██▌░░░░░░░▐██└─▄████ - █████░░▐█─┬┬┬┬┬┬┬─█▌░░█████ - ████▌░░░▀┬┼┼┼┼┼┼┼┬▀░░░▐████ - █████▄░░░└┴┴┴┴┴┴┴┘░░░▄█████ - ███████▄░░░░░░░░░░░▄███████ - ██████████▄▄▄▄▄▄▄██████████ - ███████████████████████████ - - █▄▀ █░█ █▄░█ ▄▀█   █▀ █░█ █ █▀▄ ▄▀█ - █░█ █▄█ █░▀█ █▀█   ▄█ █▀█ █ █▄▀ █▀█ - -` //go:embed docs var res embed.FS @@ -58,7 +33,6 @@ func Read(contents string) { program := p.ParseProgram() if len(p.Errors()) != 0 { - fmt.Println(styles.ErrorStyle.Italic(false).Render(ERROR_FACE)) fmt.Println(styles.ErrorStyle.Italic(false).Render("Kuna Errors Zifuatazo:")) for _, msg := range p.Errors() {