|
7/8 |
2005/1/12 [Computer/SW/Languages/Perl] UID:35671 Activity:nil |
1/11 What does the @{ } syntax mean in Perl? As used in "man perldsc". Oh nevermind I just read about references. Perl sucks. \_ It's accessing an array, like @foo. The expression inside the braces should evaluate to an array reference. See "man perlref". \_ Yeah I just found that, thanks. |