Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Sleep/Standard-ML/sleep.ml
Normal file
8
Task/Sleep/Standard-ML/sleep.ml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(TextIO.print "input a number of seconds please: ";
|
||||
let val seconds = valOf (Int.fromString (valOf (TextIO.inputLine TextIO.stdIn))) in
|
||||
TextIO.print "Sleeping...\n";
|
||||
OS.Process.sleep (Time.fromReal seconds); (* it takes a Time.time data structure as arg,
|
||||
but in my implementation it seems to round down to the nearest second.
|
||||
I dunno why; it doesn't say anything about this in the documentation *)
|
||||
TextIO.print "Awake!\n"
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue