Help for this page

Select Code to Download


  1. or download this
    sub foo : Property { $_ < 10 }
    
    main->foo = 9;
    main->foo++;  # dies
    
  2. or download this
    has $foo where { $_ < 10 };
    
  3. or download this
    my $foo where { $_ < 10 };
    
    $foo = 9;
    $foo++;  # dies