Help for this page

Select Code to Download


  1. or download this
    'Major task to perform' => [
      { input => 'Add', next => 'task_1' },
      { input => 'Delete', next => 'task_2' },
      { input => 'Rename', next => 'task_3' },
    ],
    
  2. or download this
    'Major task to perform' => {
      'add'    => { next => 'task_1', help => 'Add something to the intern
    +al list' },
      'delete' => { next => 'task_2', help => 'Rename something (didn't ex
    +pect that, did you)' },
      'rename' => { next => 'task_3', help => 'Move something to a new loc
    +ation (didn't expect that, either, huh?)' },
    },