Help for this page

Select Code to Download


  1. or download this
    package X;
    use strict;
    ...
    sub should_stop { ... };
    
    until (should_stop()){...}
    
  2. or download this
    local *X::should_stop = sub { return 1 };
    require X;
    X->import('func1');