RosettaCodeData/Task/Sleep/Logo/sleep.logo
2023-07-01 13:44:08 -04:00

5 lines
104 B
Text

to sleep :n
print [Sleeping...]
wait :n ; units: 1/60th of a second
print [Awake.]
end