singe/docs/learn/01-hello.singe
2026-09-22 21:57:42 -05:00

6 lines
181 B
Text

-- Lesson 1: Hello. The finished script, exactly as the lesson ends.
function onOverlayUpdate()
overlayClear()
overlayPrint(2, 2, "Hello!")
return OVERLAY_UPDATED
end