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