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.