| YAPC::NA 2004 | Perl Style Guides for Large Projects | #18 |
Slash Style Guide: Style 1
@stories = (1, 2, 3); # right
$comment_ref = [4, 5, 6]; # wrong
$comments = [4, 5, 6]; # right
$comment = $comments->[0]; # right
|
| << Previous | Index | Next >> | Copyright © 2004 Daniel Allen |