Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Pierre Weis <pierre.weis@inria.fr>
To: warplayer@free.fr (Nicolas Cannasse)
Cc: Jean-Christophe.Filliatre@lri.fr, caml-list@inria.fr
Subject: Re: [Caml-list] printf hook
Date: Fri, 12 Jul 2002 14:41:11 +0200 (MET DST)	[thread overview]
Message-ID: <200207121241.OAA24723@pauillac.inria.fr> (raw)
In-Reply-To: <004001c2298d$de86f7f0$3700a8c0@warp> from Nicolas Cannasse at "Jul 12, 102 12:21:20 pm"

> I just found something quite funny :
> 
> let print x =
>     printf "BEGIN";
>     printf x;
>     flush stdout
> 
> print "test";;
> print "%d" 10; (** TOO MUCH ARGS **)

This is normal, isn't it ?

> ============
> 
> let print x =
>     printf "BEGIN";
>     let r = printf x in
>     flush stdout;
>     r
> 
> print "test";
> print "%d" 10; (** WORKING **)

This is also perfectly regular: your code

let print x =
  printf "BEGIN";
  let r = printf x in
  flush stdout;
  r

is functionally equivalent to

let print x =
  let r = printf x in
  r

which is again functionally equivalent to

let print x = printf x

which is again equivalent to

let print = printf

The type checker gives an hint on that fact, since print is reported
having the same type as printf:

        Objective Caml version 3.04+15 (2002-06-18)

#open Printf;;
# let print x =
  printf "BEGIN";
  let r = printf x in
  flush stdout;
  r;;
val print : ('a, out_channel, unit) format -> 'a = <fun>
# printf;;
- : ('a, out_channel, unit) format -> 'a = <fun>

Pierre Weis

INRIA, Projet Cristal, Pierre.Weis@inria.fr, http://pauillac.inria.fr/~weis/


-------------------
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:[~2002-07-12 12:41 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-06-26 15:01 Nicolas Cannasse
2002-06-26 15:21 ` Jean-Christophe Filliatre
2002-07-12 10:21   ` Nicolas Cannasse
2002-07-12 12:41     ` Pierre Weis [this message]
2002-06-26 15:51 ` Remi VANICAT
2002-06-26 16:31 Damien Doligez
2002-06-26 16:46 ` Nicolas Cannasse

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=200207121241.OAA24723@pauillac.inria.fr \
    --to=pierre.weis@inria.fr \
    --cc=Jean-Christophe.Filliatre@lri.fr \
    --cc=caml-list@inria.fr \
    --cc=warplayer@free.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