Help for this page

Select Code to Download


  1. or download this
    sub tst_push(\@@) { }
    
  2. or download this
    push(1 ? @a : @b, 'asdf');
    push(1 == 0 ? @a : @b, 'asdf');
    
  3. or download this
    sub apush($@) {
        my $a = shift;
    
        push @$a, @_;
    }
    
  4. or download this
    apush($cond>0 ? \@a : \@b, $elem);