Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: briand@aracnet.com
To: "Alex Valdez" <alexandervaldez@sbcglobal.net>
Cc: <caml-list@pauillac.inria.fr>
Subject: RE: [Caml-list] baffled by semicolon
Date: Wed, 25 Aug 2004 22:05:49 -0700	[thread overview]
Message-ID: <16685.28589.807412.69960@soggy.deldotd.com> (raw)
In-Reply-To: <000401c48b23$cc26d630$0200a8c0@Vigo>

>>>>> "Alex" == Alex Valdez <alexandervaldez@sbcglobal.net> writes:

  Alex> The following code snippet

  Alex>  let w = area#misc#realize () ;

  Alex>    area#misc#window;;

  Alex> is the same as

  Alex>  let w = area#misc#realize ( () ; area#misc#window );;

interesting.  Somehow I managed to edit it poorly, in the file I
copied it from, the original statement is actuallly :

  let w = area#misc#realize () ; area#misc#window

and the next statement is a let, so the ;; is not really needed, I
just like to put them in for clarity.

  Alex> which is the same as

  Alex>  let w = area#misc#realize area#misc#window;;

Neither of the above works properly :

This expression has type Gdk.window = [ `drawable | `gdkwindow ] Gobject.obj
but is here used with type unit

However your response woke up some neurons - why wouldn't it be :

  let w = (area#misc#realize ()); area#misc#window ;;


Which also makes sense, the first statement being called for a
side-effect, and the second is the value for w.

ding-ding-ding we have a winner.  The above _does_ work.


Brian

  Alex> -----Original Message----- From:
  Alex> owner-caml-list@pauillac.inria.fr
  Alex> [mailto:owner-caml-list@pauillac.inria.fr]On Behalf Of
  Alex> briand@aracnet.com Sent: Wednesday, August 25, 2004 10:23 PM
  Alex> To: caml-list@pauillac.inria.fr Subject: [Caml-list] baffled
  Alex> by semicolon



  Alex> This might really by a lablgtk2 question, but I thought it's
  Alex> probably more of a ocaml syntax question :

  Alex> The following works :


  Alex> let window = GWindow.window ~width:400 ~height:400() ;;

  Alex> let area = GMisc.drawing_area ~packing:window#add () ;;

  Alex> let w = area#misc#realize () ;

  Alex>   area#misc#window;;

  Alex> let drawing = new GDraw.drawable w ;;

  Alex> However making the simple change

  Alex> let w = area#misc#realize () ;;

  Alex> ^^ notice the double semicolon gives an error: This expression
  Alex> has type unit but is here used with type [> `drawable ]
  Alex> Gobject.obj

  Alex> For the simple reason that w has somehow, mysteriously, become
  Alex> = () instead of Gdk.window which is the value it would acquire
  Alex> if it was only a single semi-colon.

  Alex> I went back through the manual and really couldn't find
  Alex> anything which explained the difference between ; and ;; - so
  Alex> it's not at all obvious to me what's going on here.  I would
  Alex> think that w would take on the value of evaluating

  Alex>  area#misc#realize ()

  Alex> in either case.

  Alex> ???

  Alex> Brian

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

  Alex> ------------------- To unsubscribe, mail
  Alex> caml-list-request@inria.fr Archives: http://caml.inria.fr Bug
  Alex> reports: http://caml.inria.fr/bin/caml-bugs FAQ:
  Alex> http://caml.inria.fr/FAQ/ Beginner's list:
  Alex> 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


  reply	other threads:[~2004-08-26  5:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-26  3:22 briand
2004-08-26  3:30 ` David Brown
2004-08-26  4:18 ` Alex Valdez
2004-08-26  5:05   ` briand [this message]
2004-08-29  4:45     ` William Lovas
2004-08-30  7:12 ` Baffeld by manual (Was: [Caml-list] baffled by semicolon) Florian Hars
2004-08-30  8:06   ` skaller
2004-08-30  8:23     ` Radu Grigore
2004-08-30  8:25     ` Ville-Pertti Keinonen
2004-08-30 11:07       ` skaller

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=16685.28589.807412.69960@soggy.deldotd.com \
    --to=briand@aracnet.com \
    --cc=alexandervaldez@sbcglobal.net \
    --cc=caml-list@pauillac.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