set_value (hash_key: string, key_value: string) : nil get_value (hash_key: string) : string #### $code = <## $file = '/some/file/path'; open (CODE, $file) or die qq(can't read "$file": $!); $tmp = $/ ; undef $/; $code = ; $/ = $tmp; close CODE; eval $code; ## and then run some function defined in that code.