7 lines
144 B
Text
7 lines
144 B
Text
Module CheckIt {
|
|
Input "Input a number of milliseconds to sleep:", N
|
|
Print "Sleeping..."
|
|
Wait N
|
|
Print "Awake"
|
|
}
|
|
CheckIt
|