RosettaCodeData/Task/Sleep/M2000-Interpreter/sleep.m2000

8 lines
144 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Module CheckIt {
Input "Input a number of milliseconds to sleep:", N
Print "Sleeping..."
Wait N
Print "Awake"
}
CheckIt