From 6b6d7467cbdc657d039f830a20cc9a3c50fdb30c Mon Sep 17 00:00:00 2001 From: empirephoenix Date: Mon, 10 Dec 2018 14:07:54 +0100 Subject: [PATCH] e==e instead of true As nil == nil, and e is nil lets use more e, especially since length is same, works with https://www.lua.org/cgi-bin/demo --- e.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e.lua b/e.lua index c2247fc..2758472 100644 --- a/e.lua +++ b/e.lua @@ -1,3 +1,3 @@ -while true do +while e==e do print('e') end