Help for this page

Select Code to Download


  1. or download this
        set_value (hash_key: string, key_value: string) : nil
        get_value (hash_key: string) : string
    
  2. or download this
    $code = <<DONE;
    sub func {
    ...
    
    eval $code;
    &func;
    
  3. 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.