Help for this page

Select Code to Download


  1. or download this
    $xx="custtype";
    print "$R::$xx" ; ## but this prints only "custtype"???
    
  2. or download this
    $xx="custtype";
    print eval "\$R::$xx";
    
    $erxx = eval "\$R::$xx";
    print "R::xx = $errxx\n";