in reply to printing multiple pages
my $first = 1; until (0 == int rand 10) { # The number of pages is unknown in advanc +e. print "\f" if ! $first; undef $first; print "page...\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: printing multiple pages
by hvn52 (Initiate) on Jan 06, 2014 at 15:17 UTC | |
by choroba (Cardinal) on Jan 06, 2014 at 15:52 UTC |