home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Learning Perl Objects, References & ModulesLearning Perl Objects, References & ModulesSearch this book

3.9. Exercises

The answers for all exercises can be found in Section A.2.

3.9.1. Exercise 1 [5 min]

How many different things do these expressions refer to?

$ginger->[2][1]
${$ginger[2]}[1]
$ginger->[2]->[1]
${$ginger->[2]}[1]


Library Navigation Links

Copyright © 2003 O'Reilly & Associates. All rights reserved.