caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Vasili Galchin <vasiliocaml@yahoo.com>
To: caml-list@inria.fr
Subject: [Caml-list] OReilly exercise question
Date: Wed, 24 Mar 2004 14:34:16 -0800 (PST)	[thread overview]
Message-ID: <20040324223416.40978.qmail@web41207.mail.yahoo.com> (raw)

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


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

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

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=20040324223416.40978.qmail@web41207.mail.yahoo.com \
    --to=vasiliocaml@yahoo.com \
    --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).