Help for this page

Select Code to Download


  1. or download this
    a | b | c
    
  2. or download this
    ( a | b ) | c
    
  3. or download this
    a | ( b | c )
    
  4. or download this
    a | b | c
    
  5. or download this
    push @stack, c;
    push @stack, b;
    ...
    push @stack, pop(@stack) | pop(@stack);
    push @stack, pop(@stack) | pop(@stack);
    pop @stack;