Help for this page

Select Code to Download


  1. or download this
    print "Sorted => @num_list\n";
    
    # Output:  Sorted => 34 2 65 345 987 23 12 45 62 100
    
  2. or download this
    @num_list= sort {a <=> b} @num_list1;
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    # Bareword "a" not allowed while "strict subs" in use at 1026159.pl li
    +ne 7.
    # Bareword "b" not allowed while "strict subs" in use at 1026159.pl li
    +ne 7.
    # Execution of 1026159.pl aborted due to compilation errors.
    
  4. or download this
        $mid = ($low+$high)/2;