Help for this page

Select Code to Download


  1. or download this
    while (1)
    {
    ...
            next;
        }
    }
    
  2. or download this
    my %dispatch_table = (
        a1 => \&do_a1,
    ...
        my $function = $dispatch_table{$value} || next;
        $function->();
    }