Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawSumma committed Apr 4, 2024
1 parent 3ef6601 commit f03976f
Show file tree
Hide file tree
Showing 7 changed files with 314 additions and 349 deletions.
2 changes: 1 addition & 1 deletion test/fib/fib15.lua → test/fib/fib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ local function fib(n)
end
end

print(fib(15))
print(fib(tonumber(arg and arg[1]) or 35))
10 changes: 0 additions & 10 deletions test/fib/fib30.lua

This file was deleted.

10 changes: 0 additions & 10 deletions test/fib/fib35.lua

This file was deleted.

10 changes: 0 additions & 10 deletions test/fib/fib40.lua

This file was deleted.

3 changes: 1 addition & 2 deletions test/fib/ptr35.lua → test/fib/ptr.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ local fib = function(fib, n)
end
end

local res = fib(fib, 35)
print(res)
print(fib(fib, tonumber(arg and arg[1]) or 35))
2 changes: 1 addition & 1 deletion test/fib/tab35.lua → test/fib/tab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ end

fib_cap.fib = fib

local res = fib(fib_cap, 35)
local res = fib(fib_cap, tonumber(arg and arg[1]) or 35))
print(res)
Loading

0 comments on commit f03976f

Please sign in to comment.