Help for this page

Select Code to Download


  1. or download this
    # This is perl, v5.8.7
    my @a = (1,2,3);
    my @b = (4,5,6);
    push 1==1 ? @a : @b, "foo";
    print "a=@a b=@b\n";
    
  2. or download this
    push 1==0 ? @a : @b, "foo";