Skip to content

Commit

Permalink
git says this file is new for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
tilkinsc committed Feb 25, 2021
1 parent 6fda3f7 commit 56011e6
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions res/testing.lua
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@

print(package)

if(arg)then
print(#arg)
end

if({...})then
print(#{...})
end

-- prints anything in args
for i, v in pairs(arg) do
print(i, v, type(v))
end

for i, v in pairs({...}) do
print(i, v, type(v))
end

-- use -Dtest=5 to display use
print(test)


print(package)

if(arg)then
print(#arg)
end

if({...})then
print(#{...})
end

-- prints anything in args
for i, v in pairs(arg) do
print(i, v, type(v))
end

for i, v in pairs({...}) do
print(i, v, type(v))
end

-- use -Dtest=5 to display use
print(test)

0 comments on commit 56011e6

Please sign in to comment.