From: Remi VANICAT <vanicat@labri.u-bordeaux.fr>
To: caml-list@inria.fr
Subject: Re: [Caml-list] printf hook
Date: Wed, 26 Jun 2002 17:51:30 +0200 [thread overview]
Message-ID: <87lm92f37h.dlv@wanadoo.fr> (raw)
In-Reply-To: <000f01c21d22$5f6a97f0$a500a8c0@warp> ("Nicolas Cannasse"'s message of "Wed, 26 Jun 2002 17:01:38 +0200")
"Nicolas Cannasse" <warplayer@free.fr> writes:
> Hi list !
> I would like do to something like this :
>
> let sprint msg =
> print_endline ("BEGIN: "^(sprintf msg))
>
> without of course loosing the ability of having variable number of
> parameters in my "msg".
> Is that kind of thing possible ?
For just this, you could do :
let sprint msg =
print_string "BEGIN: ";
printf msg;;
But generally speaking, you need kprintf from the
Not yet, it need kprintf that is in the development version of ocaml:
# Printf.kprintf;;
- : (string -> string) -> ('a, unit, string) format -> 'a = <fun>
so it would be something as :
let sprint msg =
let aux res =
print_endline ("BEGIN: " ^ res);
res in
kprintf res msg;;
--
Rémi Vanicat
vanicat@labri.u-bordeaux.fr
http://dept-info.labri.u-bordeaux.fr/~vanicat
-------------------
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
next prev parent reply other threads:[~2002-06-26 15:48 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
2002-06-26 15:51 ` Remi VANICAT [this message]
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=87lm92f37h.dlv@wanadoo.fr \
--to=vanicat@labri.u-bordeaux.fr \
--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