Help for this page

Select Code to Download


  1. or download this
    func1( <expression(s) rendering the argument list1>  ) 
    + 
    func2( <expression(s) rendering the argument list2> )
    
  2. or download this
    my( $x, $y ) = ( $db->getData() >>,<< $lwp->getdata() );
    
  3. or download this
    while( my $x = $db->getData() >>and<< my $y = $lwp->getData() ) {
        ## Use $x and $y
    }
    
  4. or download this
    
    while( all( my $x = $db->getData() & my $y = $lwp->getData() ) ) {
        ## use $x and $y
    }
    
  5. 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."
    }