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