Help for this page

Select Code to Download


  1. or download this
    SV* rv = eval_pv("require Module; import Module; 1", 0);
    
    if (!SvTRUE(rv)) {
       ... handle exception ...
    }
    
  2. or download this
    SV* code = newSVpv("require Module; import Module; 1", 0);
    SV* rv;
    ...
    if (!SvTRUE(rv)) {
       ... handle exception ...
    }