Help for this page

Select Code to Download


  1. or download this
    my %priorities = {  '+' => 1,
                        '-' => 1,
                        '*' => 2,
                        '/' => 2 };
    
  2. or download this
    "2 3 4 * 5 / +"  --> 2 + 3 * 4 / 5
    "3 4 * 5 / 2 +"  --> 3 * 4 / 5 + 2
    "3 4 5 / * 2 +"  --> 3 * 4 / 5 + 2
    "2 3 + 4 * 5 /"  --> (2 + 3) * 4 / 5
    
  3. or download this
    my $o = (   ',' => 1,
                'j' => 2 );
    
    "_ just another , perl , hacker , j"  =>  
       "_ j ( just , another , perl , hacker )"