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

8 lines
144 B
Plaintext

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