mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
13 lines
No EOL
207 B
Lua
13 lines
No EOL
207 B
Lua
local function id(x)
|
|
return x
|
|
end
|
|
local function comp(f)
|
|
return function(g)
|
|
return function(x)
|
|
return f(g(x))
|
|
end
|
|
end
|
|
end
|
|
local id2 = comp (id)(id)
|
|
local nil2 = id2(nil)
|
|
return nil2(nil2) |