This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
notes:perl_cheat_sheet [2026/07/31 17:13] 43.130.73.36 old revision restored (2026/06/06 17:46) |
notes:perl_cheat_sheet [2026/07/31 17:39] (current) 47.245.141.89 old revision restored (2013/09/11 16:43) |
||
|---|---|---|---|
| Line 13: | Line 13: | ||
| * Comments start with # (no block comments) | * Comments start with # (no block comments) | ||
| * Parenthesis are optional unless part of syntax. | * Parenthesis are optional unless part of syntax. | ||
| - | * '' | ||
| ===== Numbers ===== | ===== Numbers ===== | ||
| Line 74: | Line 73: | ||
| $count += 2; | $count += 2; | ||
| }</ | }</ | ||
| - | * foreach loop <code perl> | + | * foreach loop <code perl> |
| # modifications to $rock modify the list element | # modifications to $rock modify the list element | ||
| # $_ is used if loop variable is omitted | # $_ is used if loop variable is omitted | ||
| Line 83: | Line 82: | ||
| * Read a line of input - '' | * Read a line of input - '' | ||
| * '' | * '' | ||
| - | * Assigning < | + | * Assigning < |
| - | * Loop over input ($_ can only be used in this specific case) <code perl> | + | |
| - | print "I saw $_"; | + | |
| - | }</ | + | |
| - | * '' | + | |
| - | * ''<>'' | + | |
| - | chomp; | + | |
| - | print "It was $_ that I saw!\n"; | + | |
| - | }</ | + | |
| ===== User Subroutines ===== | ===== User Subroutines ===== | ||
| Line 99: | Line 91: | ||
| $m + $n; | $m + $n; | ||
| } </ | } </ | ||
| - | * The value of the last expression evaluated is returned. But '' | + | * The value of the last expression evaluated is returned. |
| - | * A list can be returned if the subroutine is called in a list context ('' | + | |
| * Arguments are in the list @_ . If ''& | * Arguments are in the list @_ . If ''& | ||
| * Lexical scoped variables can be used in any block by prefixing with '' | * Lexical scoped variables can be used in any block by prefixing with '' | ||
| - | * In Perl 5.10 and up '' | ||
| - | * Ampersand is optional if subroutine has previously been declared or if parenthesis are used. Ampersand is not optional if built-in subroutine is being overridden. | ||