WrapInFunction
This Step Wraps the Entire Script into a Function
Last updated
This Step Wraps the Entire Script into a Function
Legacy mirror: Prometheus documentation has moved to https://prometheus-lua.github.io/Prometheus/docs/. This GitBook remains online for existing links/search results and may not always reflect the latest changes.
Iterations
number
The Number Of Iterations
print("Hello, World!")-- Iterations = 1
return (function()
print("Hello, World!")
end)()Last updated