Help for this page

Select Code to Download


  1. or download this
    @ary = (
      [1,2],
    ...
      [3,3]
      #other data
    )
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    
    print join "\n", map { "@$_" } @result;
    print "\n";