1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
title 'Test PRINT transformation'.
remark EOF
----------------------------------------------------------------------
There is no test for DATA LIST FIXED since it is imagined that the
rest of the tests give it a pretty good workout.
----------------------------------------------------------------------
EOF
remark EOF
----------------------------------------------------------------------
Testing use of DATA LIST FREE.
----------------------------------------------------------------------
EOF
data list free table file='data-list.data'/A B C D.
print outfile="foo" table/A(f8.2) '/' B(e8.2) '/' C(n10) '/' D(rbhex16) '/'.
print space a.
print outfile="foo" /a b c d.
list.
remark EOF
----------------------------------------------------------------------
Testing use of DATA LIST LIST.
----------------------------------------------------------------------
EOF
data list list table file='data-list.data'/A B C D.
print table/A B C D.
list.
|