sub choose ( Array $orig_list, %opt? ) is export { %opt = 0; return Term::Choose.new().choose( $orig_list, %opt ); } sub choose_multi ( Array $orig_list, %opt? ) is export { %opt = 1; return Term::Choose.new().choose( $orig_list, %opt ); }