Help for this page

Select Code to Download


  1. or download this
    $a=3;
    {
        my $a=5;
        say ${a};
        say ${'a'};
    }
    
  2. or download this
    5
    3
    
  3. or download this
    @cat=(1,2,3);
    @dog=(5,6);
    @pig=(4,3,2,1);
    for('cat','dog','pig'){
    stuff(@$_);
    }