-- 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