Functions
Defining Functions
local function addNumbers()
end
-- To call function run addNumbers()local function addNumbers()
-- Function body
print("Function called!")
endLast updated
Was this helpful?
local function addNumbers()
end
-- To call function run addNumbers()local function addNumbers()
-- Function body
print("Function called!")
endLast updated
Was this helpful?
Was this helpful?