Help for this page

Select Code to Download


  1. or download this
    my @vars = (7, 12, 49, 44);
    sub bubble_sort {
    ...
          }
       }
    }
    
  2. or download this
    my @vars = (7, 12, 49, 44);
    sub bubble_sort {
    ...
          }
       }
    }
    
  3. or download this
    sub ascending {
       my ($left, $right) = @_;
    ...
    }
    
    bubble_sort(\ascending);
    
  4. or download this
    bubble_sort(sub { my ($left, $right)=@_; return $right>$left });