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