Help for this page

Select Code to Download


  1. or download this
    sub f {
      my $ref=shift;
      ...
      $$ref=4711;
    }
    
  2. or download this
    # Solution 1
    my $ref;
    ...
    f(NULLREF);# Maybe nice if we use this feature often in our
               # program and use NULLREF consistently, but still
               # not really anonymous