Help for this page

Select Code to Download


  1. or download this
    my @subs;
    for (qw( 123 456 789 )) {
    ...
    }
    
    say $_->() for @subs;
    
  2. or download this
    123
    456
    789
    
  3. or download this
    my $int;
    my @subs;
    ...
    }
    
    say $_->() for @subs;
    
  4. or download this
    789
    789
    789