RosettaCodeData/Task/Sleep/Oz/sleep.oz

9 lines
244 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
declare
class TextFile from Open.file Open.text end
StdIn = {New TextFile init(name:stdin)}
WaitTime = {String.toInt {StdIn getS($)}}
in
{System.showInfo "Sleeping..."}
{Delay WaitTime} %% in milliseconds
{System.showInfo "Awake!"}