Help for this page

Select Code to Download


  1. or download this
    my @x;
    while (deal [1..9] => my ($a,$b,$c) ){
      print $a,$b,$c;
      push @x, \$a;
    }
    
  2. or download this
    for (1..3) {
      while (deal [1..9] => my ($a,$b,$c) ){
    ...
        last;
      }
    }
    
  3. or download this
    init_deal my ($a,$b,$c)
    while (deal [1..9] => ($a,$b,$c) ){
       ...
    }