Help for this page

Select Code to Download


  1. or download this
    %FLUT = (
        'condition_1' => \&func_1,
    ...
    
    $condition = ##  reduce the input to a known condition
    $FLUT{$condition}->(@args);
    
  2. or download this
    package Command;
    
    ...
        my $O = shift;
        return ($O->( @_ ));
    }
    
  3. or download this
    package Machine;
    
    ...
    
    
    1;