RosettaCodeData/Task/Sleep/M2000-Interpreter/sleep.m2000
2023-07-01 13:44:08 -04:00

7 lines
144 B
Text

Module CheckIt {
Input "Input a number of milliseconds to sleep:", N
Print "Sleeping..."
Wait N
Print "Awake"
}
CheckIt