- or download this
use GraphViz;
my $g = GraphViz->new();
foreach $command (@commands) {
eval('$g->'.$command);
}
- or download this
use strict;
use CGI;
...
foreach my $comm (@comm) {
eval('print $cgi->'.$comm);
}
- or download this
Content-Type: first
Content-Type: second
- or download this
my $comm = "header";
print $cgi->$comm('third');
- or download this
my $comm = "header('third')";
print $cgi->$comm