docs:programming:perl:perl_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
docs:programming:perl:perl_notes [2007/05/10 00:41] billhdocs:programming:perl:perl_notes [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Perl Notes ======
 +
 +===== Special Variables =====
 +  * @_ - any arguments passed to a subroutine are accessible with this variable
 +
 +===== Lists, Arrays, and Hashes =====
 +  * $var is a scalar
 +  * (8, $a, 0.4, 'test') is a list (used to create arrays, etc...)
 +  * @var is an array
 +    * $var[0] is the first item in the array
 +  * %var is a hash
 +    * $var{key} is the value of the item with "key"