$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David Abrahams (david.abrahams_at_[hidden])
Date: 2001-07-03 10:09:20
A short remark:
I am not fond of the spacing:
format("%1 %2 %3") %1 %3 %5
preferring instead
format("%1 %2 %3") % 1 % 3 % 5
The first one makes the values (1,3,5) look like positional parameters. I
hope the examples and docs will use the 2nd form.
-Dave