Help for this page

Select Code to Download


  1. or download this
    my $ordered_schema = sprintf(
        "%s%s",
    ...
            return $ordered_columns;
        }->(),
    );
    
  2. or download this
    my $ordered_schema = join "\n", $header, map $columns{ $_ } sort keys 
    +%columns;
    
  3. or download this
    my $ordered_schema = sprintf(
        "%s%s",
    ...
            $ordered_columns; ## Update: return statement removed. Thanks 
    +Choroba.
        },
    );