Help for this page

Select Code to Download


  1. or download this
             INITIAL_STATE  SOME_STATE     FINAL_STATE
             +-----+        +-----+        +-----+
    ...
             +-----+   |    +-----+        +-----+
                       |       |
                       +-------+
    
  2. or download this
    INITIAL_STATE: {
       ...
    ...
    FINAL_STATE: {
       ...
    }
    
  3. or download this
    sub initial_state {
       ...
    ...
    }
    
    initial_state();
    
  4. or download this
    sub initial_state {
       ...
    ...
    }
    
    initial_state();
    
  5. or download this
    sub initial_state {
       ...
    ...
    while ( $state ) {
       $state = $state->();
    }