Hi,
consider this example:
<hansl>
set verbose off
matrix m = {0.0234, 2.8797, -3.2342}
printf "%12.2f", m[1,]
printf "hey\n" # prints on a new output line
m = {3.3}
printf "%12.2f", m[1,]
printf "hey\n" # no new line
</hansl>
Is this intended? It's a bit difficult to write general code when you
don't know whether a newline is printed or not.
thanks
sven