in reply to Re: subroutine constants
in thread subroutine constants
and#!/usr/bin/perl -w use strict; sub BUFFER { 2048 } print BUFFER, "\n";
#!/usr/bin/perl -w use strict; sub BUFFER () { 2048 } print BUFFER, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: subroutine constants
by John M. Dlugosz (Monsignor) on Sep 21, 2001 at 00:40 UTC | |
|
Re: Re: Re: subroutine constants
by suaveant (Parson) on Sep 21, 2001 at 00:41 UTC | |
by tye (Sage) on Sep 21, 2001 at 01:00 UTC | |
by suaveant (Parson) on Sep 21, 2001 at 01:04 UTC | |
|
Re: Re: Re: subroutine constants
by czarfred (Beadle) on Sep 21, 2001 at 03:47 UTC |