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