File: time3.sml

package info (click to toggle)
mlton 20100608-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 34,980 kB
  • ctags: 69,089
  • sloc: ansic: 18,421; lisp: 2,879; makefile: 1,570; sh: 1,325; pascal: 256; asm: 97
file content (14 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
open Time

fun pt t = (print(toString t) ; print "\n")

val messy = fromReal 123.456789
   
val _ = (pt zeroTime;
         pt messy;
         app (fn d => (print(fmt d messy) ; print "\n")) [0,1,2,3,4,5,6,7];
         pt(fromReal 123.456789);
         pt(fromSeconds 123);
         pt(fromMilliseconds 123456);
         pt(fromMicroseconds 123456789)
         )