7 lines
116 B
Text
7 lines
116 B
Text
|
|
function (time)
|
||
|
|
{
|
||
|
|
Print("Sleeping...")
|
||
|
|
Sleep(time) // time is in milliseconds
|
||
|
|
Print("Awake!")
|
||
|
|
}
|