Sha256: 0edd4b570544cf35f71fa0f1720e1b3899d23c490ea793f1c157614cfed2c3c3

Contents?: true

Size: 707 Bytes

Versions: 23

Compression:

Stored size: 707 Bytes

Contents

-- function closures are powerful

-- traditional fixed-point operator from functional programming
Y = function (g)
      local a = function (f) return f(f) end
      return a(function (f)
                 return g(function (x)
                             local c=f(f)
                             return c(x)
                           end)
               end)
end


-- factorial without recursion
F = function (f)
      return function (n)
               if n == 0 then return 1
               else return n*f(n-1) end
             end
    end

factorial = Y(F)   -- factorial is the fixed point of F

-- now test it
function test(x)
	io.write(x,"! = ",factorial(x),"\n")
end

for n=0,16 do
	test(n)
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
dub-1.0.0 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.7.0 test/fixtures/app/vendor/lua/test/factorial.lua
Tamar-0.7.18 src/lua/test/factorial.lua
Tamar-0.7.17 src/lua/test/factorial.lua
Tamar-0.7.16 src/lua/test/factorial.lua
Tamar-0.7.14 src/lua/test/factorial.lua
Tamar-0.7.13 src/lua/test/factorial.lua
Tamar-0.7.12 src/lua/test/factorial.lua
Tamar-0.7.11 src/lua/test/factorial.lua
Tamar-0.7.10 src/lua/test/factorial.lua
Tamar-0.7.9 src/lua/test/factorial.lua
Tamar-0.7.8 src/lua/test/factorial.lua
Tamar-0.7.7 src/lua/test/factorial.lua
Tamar-0.7.6 src/lua/test/factorial.lua
dub-0.6.6 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.6.5 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.6.4 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.6.3 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.6.2 test/fixtures/app/vendor/lua/test/factorial.lua
dub-0.6.1 test/fixtures/app/vendor/lua/test/factorial.lua