- or download this
set_value (hash_key: string, key_value: string) : nil
get_value (hash_key: string) : string
- or download this
$code = <<DONE;
sub func {
...
eval $code;
&func;
- or download this
$file = '/some/file/path';
open (CODE, $file) or die qq(can't read "$file": $!);
...
eval $code;
## and then run some function defined in that code.