Help for this page

Select Code to Download


  1. or download this
    sub toggle_door
      {
    ...
        }
        return $$door_ref; 
      }
    
  2. or download this
    sub toggle_door {
    
    ...
      return $$door_ref = $transition->{$$door_ref};
    
      }
    
  3. or download this
    sub toggle_door {
    
    ...
      return $_[0] = $transition->{$_[0]};
    
      }