-- Define a function with multiple parameters
function
addNumbers
(
a
,
b
)
return
a
+
b
end
-- Call the function with specific values
_
Print
_
Console
(
addNumbers
(
5
,
3
))
-- Output: 8