7 lines
104 B
Lua
7 lines
104 B
Lua
function testFunction()
|
|
print("Hello from testFunction!")
|
|
end
|
|
|
|
function doAdd(a, b)
|
|
return a + b
|
|
end |