Skip to content

Commit

Permalink
bug arreglado: no leia el ultimo caracter
Browse files Browse the repository at this point in the history
  • Loading branch information
DeybisMelendez committed Jun 30, 2020
1 parent a5a879d commit 256825a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ end

local isComment = false
local char = 1
while char < #code do
while char <= #code do
local val = code:sub(char, char)
if not isComment then
if val == "$" then
Expand Down

0 comments on commit 256825a

Please sign in to comment.