summaryrefslogtreecommitdiff
path: root/spec/outputs/export_default.lua
blob: a9c787f6920629fc5f3d664b91c273c89e6f415e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local _module_0 = nil
print("OK")
_module_0 = function()
	print("hello")
	return 123
end
if not isOff then
	f(123, "abc", function(x, fy)
		print(x)
		return fy(function(y, res)
			if res then
				return abc + y
			else
				return abc
			end
		end)
	end)
end
return _module_0