From b7190f649747486896cf2c399797dfd1cd883876 Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Tue, 14 Aug 2018 21:44:56 +0100 Subject: [PATCH] Revert "Add "quit" as a way to exit the REPL" This reverts commit 7c75ab8e44986b27a814a3c73e912d3b2588bfca. R#2214 fixed without needing this patch --- src/core/REPL.pm6 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/REPL.pm6 b/src/core/REPL.pm6 index 5dd7ae9d1ff..9ed2712feae 100644 --- a/src/core/REPL.pm6 +++ b/src/core/REPL.pm6 @@ -297,7 +297,6 @@ do { return $!control-not-allowed; } - exit if $code.chomp eq "quit"; self.compiler.eval($code, |%adverbs); }