Help for this page

Select Code to Download


  1. or download this
    sub make_expression {
        my ($item, $config) = @_;
    ...
    }
    
    my $formatted_item = make_expression( $item, \%config );
    
  2. or download this
    my $formatter = Formatter->new( config => \%config );
    
    # many lines and modules later ...
    my $formatted_item = $formatter->format( $item );