mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 13:30:40 +00:00
041838a942
* First cut reading JSON into an Agda representation of Luau syntax
12 lines
183 B
Lua
12 lines
183 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 = id(id)
|
|
local nil2 = id2(nil)
|