luau/tests/conformance/apicalls.luau
Baileyeatspizza b6d724c5b1 Attempt 1
2021-11-08 17:17:40 +00:00

8 lines
213 B
Text

-- 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
return('OK')