Help for this page

Select Code to Download


  1. or download this
    $two = 'test';
    @three = ('test');
    ...
            print "Scalar exists: $_\n";
        }
    }
    
  2. or download this
    my @fruit = ();
    my @meat = ();
    ...
        ($category, $item) = split(/\$/, $_);
        push(@{$category}, $item) if (@{$category});
    }