Skip to content

Commit

Permalink
eoh
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Mar 30, 2024
1 parent 37702d6 commit 419ce98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EOH/v1.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ local function startsWith(text, prefix)
return text:find(prefix, 1, true) == 1
end

local function log(message)
print(getTime() .. " " .. message)
end

local function printTable(table)
if table == nil then
print("nil table")
Expand Down Expand Up @@ -67,10 +71,6 @@ local function getTime()
return formattedTime
end

local function log(message)
print(getTime() .. " " .. message)
end

local function findNonEmptyIndex(item_in_box)

local boxLocation = 0
Expand Down

0 comments on commit 419ce98

Please sign in to comment.