Help for this page

Select Code to Download


  1. or download this
      sub d :lvalue {
        print("$_[0]: ", defined($_[1]) ? "[$_[1]]" : "undef", "\n");
    ...
    
      our $fred = 78;
      d("post assign", d("post local", local $fred) = 90);
    
  2. or download this
      our $fred = 78 ;
      local $fred = 'ho hum' ;