Re: slowing down output and multi-line comments

2003-06-12 Thread Jenda Krynicky
lready left the screen). Afte you make the changes and press OK you will be able to specify whether you want the system to remember the settings or apply them only to this particular window. > Is there a way to write multi-line comments in Perl? here(is, some, code); =for comment and here

RE: slowing down output and multi-line comments

2003-06-12 Thread Bob Showalter
use strict; my $pager = $ENV{PAGER} || "(less || more)"; open(STDOUT, "| $pager") or die "can't fork a pager: $!"; $SIG{PIPE} = sub { exit }; print "This is line $_\n" for 1..100; print "I'm all done\n"; close STDOUT; > >

Re: slowing down output and multi-line comments

2003-06-12 Thread James Edward Gray II
al program, not Perl. Not knowing what it is, I can't help here. Is there a way to write multi-line comments in Perl? Sure. ;) # first line # second line James -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

slowing down output and multi-line comments

2003-06-12 Thread Stuart White
x27;d actually get double the output on one screen, that would help too. For both, I'd be very happy. Is there a way to write multi-line comments in Perl? Thanks in advance, -stu __ Do you Yahoo!? Yahoo! Calendar - Free online calendar with sync to Outlook

Re: multi line comments

2002-12-11 Thread John W. Krahn
Matt Simonsen wrote: > > I believe there are no multi-line comments in Perl. Do any of you have a > good hack to fake these? http://search.cpan.org/author/KANE/Acme-Comment-1.02/ John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

RE: multi line comments

2002-12-11 Thread Mark Anderson
perldoc perlpod -Original Message- From: Matt Simonsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 3:33 PM To: [EMAIL PROTECTED] Subject: multi line comments I believe there are no multi-line comments in Perl. Do any of you have a good hack to fake these? Thanks Matt

RE: multi line comments

2002-12-11 Thread Timothy Johnson
Check out 'perldoc perlpod' and look for the documentation on =cut. That shows one way. -Original Message- From: Matt Simonsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 3:33 PM To: [EMAIL PROTECTED] Subject: multi line comments I believe there are no

multi line comments

2002-12-11 Thread Matt Simonsen
I believe there are no multi-line comments in Perl. Do any of you have a good hack to fake these? Thanks Matt -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]