Help for this page

Select Code to Download


  1. or download this
    my $a = sub { return $_[0] + $_[1]; };
    print $a->(3, 5);
    
  2. or download this
    my $code = 'return $_[0] + $_[1];'
    my $a = eval "sub { $code }";
    print $a->(3, 5);