- or download this
#!/usr/bin/perl
use warnings;
...
You will see this often at the start of a Perl program:
#!/usr/bin/perl -w
use strict;
- or download this
sub A
{
...
{
my ($p1,$p2,$p3) = @_; #effect: make copy from stack passed
}
- or download this
while ( (print "Enter Command: "),
(my $line = <STDIN>) !~ /^\s*q(uit)?\s*$/i
...
{...}
sub delete()
{...}