Browse thread
type inference problem with Printf.sprintf ?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2010-11-03 (13:48) |
From: | Gregory Bellier <gregory.bellier@g...> |
Subject: | Re: [Caml-list] type inference problem with Printf.sprintf ? |
What's the point to rely on another lib while the standard lib Unix is enough for this simple task? I don't know calendarLib, that's why I ask. But it relies on Unix and Sys anyway so maybe it's better to just use Unix. 2010/10/27 Richard Jones <rich@annexia.org> > On Wed, Oct 27, 2010 at 08:44:10AM +1100, Arlen Cuss wrote: > > # open CalendarLib;; > > # Calendar.now ();; > > - : CalendarLib.Calendar.t = <abstr> > > # Printer.Calendar.print "%d/%m/%Y %H:%M:%S\n" (Calendar.now ());; > > 26/10/2010 21:43:43 > > - : unit = () > > Even better, use the internationally standardized format for dates: > > # Printer.Calendar.print "%F %T\n" (Calendar.now ()) ;; > 2010-10-27 11:28:59 > - : unit = () > > http://en.wikipedia.org/wiki/ISO_8601 > > Rich. > > -- > Richard Jones > Red Hat > > _______________________________________________ > Caml-list mailing list. Subscription management: > http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list > Archives: http://caml.inria.fr > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs >