From: Chris Hecker <checker@d6.com>
To: caml-list@inria.fr
Subject: [Caml-list] semi-colons and begin
Date: Wed, 04 Apr 2001 14:33:03 -0700 [thread overview]
Message-ID: <4.3.2.7.2.20010404142255.0338a1c0@shell16.ba.best.com> (raw)
I must admit I'm still slightly confused about the semicolon thing, even after writing a fair amount of caml code. The current sticking point is that
# if false then print_int 2; print_int 3;;
3- : unit = ()
# if false then print_int 2; print_int 3 else ();;
Characters 39-43:
Syntax error
#
# if false then begin print_int 2; print_int 3 end;;
- : unit = ()
# if false then begin print_int 2; print_int 3 end else ();;
- : unit = ()
The "BNF" grammar implies the first and second tests should compile and print nothing, since expr = expr ; expr, although Xavier et al. have said the BNF in the docs isn't really accurate.
I also thought begin...end was needed in a pattern-match, but apparently expr ; expr works there?
Is there a chart or something that says exactly where they're allowed? I'm afraid of introducing a subtle bug in my program. In C I always use brackets with my if statements to avoid the similar problem, so I suppose I could use begin..end everywhere, but yuck!
Chris
-------------------
To unsubscribe, mail caml-list-request@inria.fr. Archives: http://caml.inria.fr
next reply other threads:[~2001-04-04 22:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-04-04 21:33 Chris Hecker [this message]
2001-04-04 22:40 ` Gerd Stolpmann
2001-04-04 23:32 ` Chris Hecker
2001-04-05 1:03 ` mahamud
2001-04-05 3:48 ` Brian Rogoff
2001-04-05 6:05 ` David Brown
2001-04-06 9:33 ` Gerd Stolpmann
2001-04-05 3:35 ` Michael Hicks
2001-04-05 3:53 ` Daniel de Rauglaudre
2001-04-05 6:23 ` Mattias Waldau
2001-04-05 17:34 ` Pierre Weis
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=4.3.2.7.2.20010404142255.0338a1c0@shell16.ba.best.com \
--to=checker@d6.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