Help for this page

Select Code to Download


  1. or download this
     'boldital' => do {
        my $i = curry \&wrap_with_html => ( 'i' );
        my $b = curry \&wrap_with_html => ( 'b' );
        sub { $b->( $i->( @_ ) ) }
    },
    
  2. or download this
    sub compose
    {
    ...
    
    'boldital' => &compose(&curry(\&wrap_with_html, 'i'),
                           &curry(\&wrap_with_html, 'b')),