d3a7d221536298c44b33294d38207834083ab4e2
[mirrors/Programs.git] / perl / map-reduce / function-string.pl
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 my $sub = q {{
6 print "rofl\n";
7 }};
8
9 print "$sub\n";
10 eval $sub;
11 eval "sub foo $sub"; foo();
This page took 0.264373 seconds and 5 git commands to generate.