mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
34 lines
538 B
Lua
34 lines
538 B
Lua
-- This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
print('testing function calls through API')
|
|
|
|
function add(a, b)
|
|
return a + b
|
|
end
|
|
|
|
local m = { __eq = function(a, b) return a.a == b.a end }
|
|
|
|
function create_with_tm(x)
|
|
return setmetatable({ a = x }, m)
|
|
end
|
|
|
|
local gen = 0
|
|
function incuv()
|
|
gen += 1
|
|
return gen
|
|
end
|
|
|
|
pi = 3.1415926
|
|
function getpi()
|
|
return pi
|
|
end
|
|
|
|
function largealloc()
|
|
table.create(1000000)
|
|
end
|
|
|
|
function oops()
|
|
return "oops"
|
|
end
|
|
|
|
return('OK')
|