-- Define a global function
function
globalFunction
()
print
(
"This is a global function"
)
end
-- Call the global function
globalFunction
()