Help for this page

Select Code to Download


  1. or download this
    ($fred, $barney, $dino) = ("flintstone", "rubble", undef);
    ($fred, $barney) = ($barney, $fred);
    
  2. or download this
    @rocks = qw/ bedrock slate lava /;
    @tiny = ( );                       # the empty list
    $dino = "granite";
    @quarry = (@rocks, "crushed rock", @tiny, $dino);