10 lines
153 B
Text
10 lines
153 B
Text
/*
|
|
Sleep, in Jsish
|
|
*/
|
|
|
|
printf('Sleep time (in milliseconds)? ');
|
|
var ms = parseInt(console.input());
|
|
|
|
puts('Sleeping...');
|
|
sleep(ms);
|
|
puts('Awake!');
|