diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2019-07-31 10:39:37 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2019-07-31 10:39:37 -0300 |
commit | 360ac079778691ba991308ac73f3e1f70ad579e5 (patch) | |
tree | 26b5e43855308433e6e118f2e029e8861b784d59 | |
parent | 50fefc6d3f292763386322592965f9003f1bcf71 (diff) |
Remove debug prints v1.0.1
-rw-r--r-- | dirtycompiler.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dirtycompiler.lua b/dirtycompiler.lua index 4d61538..779a691 100644 --- a/dirtycompiler.lua +++ b/dirtycompiler.lua @@ -69,7 +69,6 @@ local finish = selfify({}, SELF) finish[parser.EOZ] = function(state, token) local results = state.results local tk = table.remove(results) - print((tk == START_OF_STMT and "START_OF_STMT") or (tk == END_OF_STMT and "END_OF_STMT") or tostring(tk)) if tk == TK.FLT then local token = table.remove(results) local extra, num, den = 1, token, 1 |