start page | rating of books | rating of authors | reviews | copyrights

Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: die Chapter 5
Function Reference
Next: Reference: dump
 

do

do {
block
}

Executes the sequence of commands in the block and returns the value of the last expression evaluated. When modified by a loop modifier, Perl executes the block once before testing the loop condition. (On other statements, the loop modifiers test the conditional first.)


Previous: Reference: die Perl in a Nutshell Next: Reference: dump
Reference: die Book Index Reference: dump