Help for this page

Select Code to Download


  1. or download this
    package one;
    
    ...
    $one->two();
    "one"->two();
    
  2. or download this
    $one = "two";
    $two = "three";
    ...
    print $$$one . "\n";
    print $$${"one"} . "\n";
    
  3. or download this
    $one = "two";
    
    ...
    
    %$one = %::;
    print %$one . "\n";