caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Zeno Lee" <zeno.lee@earthlink.net>
To: <caml-list@inria.fr>
Subject: Re: [Caml-list] OReilly exercise question
Date: Wed, 24 Mar 2004 17:44:01 -0500	[thread overview]
Message-ID: <007101c411f1$8113de50$6401a8c0@xp> (raw)
In-Reply-To: <20040324223416.40978.qmail@web41207.mail.yahoo.com>

The exercise is under the assumption that you've already opened the Unix
module.

try

date.Unix.tm_year

----- Original Message ----- 
From: "Vasili Galchin" <vasiliocaml@yahoo.com>
To: <caml-list@inria.fr>
Sent: Wednesday, March 24, 2004 5:34 PM
Subject: [Caml-list] OReilly exercise question


> Hello
>
>     I am working some of the exercises in the online
> OReilly book, in particular the time server in the
> Distributed Computing chapter. I wrote the following
> function:
>
> (* Get time of day and send across the wire *)
> let time_service ic oc =
>    try
>      let ts = Unix.time () in
>      let (date:Unix.tm) = Unix.gmtime ts in
>      let year = string_of_int (date.tm_year);
>          month = string_of_int (date.tm_mon + 1);
>          day = string_of_int (date.tm_mday);
>          hour = string_of_int (date.tm_hour);
>          minute = string_of_int (date.tm_min);
>          seconds = string_of_int (date.tm_sec) in
>      let r = year^month^day^hour^minute^seconds
>      in output_string oc (r^"\n"); flush oc
>    with _ -> Printf.eprintf "BLAH\n"; flush stdout;
> xit 0;;
>
>
> I get the following error from ocamlc:
>
> File "time1.ml", line 23, characters 30-44:
> Unbound record field label tm_year
>
> I am confused because this field is in Unix.tm! ???
>
> Regards, Vasili
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Finance Tax Center - File online. File on time.
> http://taxes.yahoo.com/filing.html
>
> -------------------
> To unsubscribe, mail caml-list-request@inria.fr Archives:
http://caml.inria.fr
> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ:
http://caml.inria.fr/FAQ/
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


      parent reply	other threads:[~2004-03-24 22:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-24 22:34 Vasili Galchin
2004-03-24 22:40 ` Richard Jones
2004-03-24 22:44 ` Zeno Lee [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='007101c411f1$8113de50$6401a8c0@xp' \
    --to=zeno.lee@earthlink.net \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).