in reply to Re: Re: Re: Formatting a large number of records
in thread Formatting a large number of records

Except that will have to read print { get_file_handle($year) } "$newline\n";
$ perl -le'sub x { \*STDOUT }; print x() "blah"' String found where operator expected at -e line 1, near ") "blah"" (Missing operator before "blah"?) syntax error at -e line 1, near ") "blah"" Execution of -e aborted due to compilation errors. $ perl -le'sub x { \*STDOUT }; print { x() } "blah"' blah

Makeshifts last the longest.