Survives crashes and restarts
- State persisted automatically
- Resumes exactly where it left off
- Each process isolated with its own security scope
- Built on Temporal
local time = require("time") local funcs = require("funcs") type User = { email: string, name: string } local function main(user: User, message: string) time.sleep("30d") funcs.call("app.email:send", { to = user.email, subject = "Reminder", body = message }) end