Help for this page

Select Code to Download


  1. or download this
        $result = func1( $var++ ) op func2( $var );
    
  2. or download this
    sub read_a_line {return scalar <STDIN>}
    
  3. or download this
    my $two_lines = read_a_line() . read_a_line();
    
  4. or download this
    my $two_lines  = read_a_line();
       $two_lines .= read_a_line();
    
  5. or download this
        EXPR1 OP EXPR2