- or download this
func1( <expression(s) rendering the argument list1> )
+
func2( <expression(s) rendering the argument list2> )
- or download this
my( $x, $y ) = ( $db->getData() >>,<< $lwp->getdata() );
- or download this
while( my $x = $db->getData() >>and<< my $y = $lwp->getData() ) {
## Use $x and $y
}
- or download this
while( all( my $x = $db->getData() & my $y = $lwp->getData() ) ) {
## use $x and $y
}
- or download this
while( my $messageObj = read( any( @sockets ) ) ) {
## reply
send $msgObj->socket,
"Thanks for your message '$msgObj->text', we'll get back to yo
+u."
}