Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's a simple reference or cheat sheet for nested data structures in Perl? [closed]

What's a simple reference or cheat sheet for nested data structures in Perl?

like image 405
Bee Avatar asked Dec 10 '22 19:12

Bee


1 Answers

An excellent beginning tutorial is perldoc perlreftut. I also highly recommend two other tutorials in the built-in Perl documentation: perldoc perllol and perldoc perldsc. (I worked through them in that order, but your mileage may vary. I also found it easier to read perldoc perlref after I worked through those tutorials, but again, you may not.)

You should always be able to get these via a terminal, if you have a normal Perl installation. But you can also get them via the web (and as downloadable pdfs) via those links.

For a cheat sheet/reference sheet, you could do a lot worse than this post on PerlMonks.

like image 183
Telemachus Avatar answered Jun 02 '23 00:06

Telemachus