*** empty log message ***

This commit is contained in:
2006-11-16 11:53:16 +00:00
parent 7f8d858030
commit 5298b39326
7 changed files with 292 additions and 201 deletions

View File

@ -1,5 +1,7 @@
BEGIN {
CONVFMT="%s";
printf "%s", sprintf ("abc %s abc\n", sprintf ("def %s %s", sprintf ("xyz %s xyz", 1.2342), "def"));
#CONVFMT="%*.*s";
#CONVFMT="%*.*f";
printf "%s", sprintf ("abc %s abc\n", sprintf ("def %s %s", sprintf ("%s %s %s", "xyz", 1.2342, "xyz"), "def"));
}