in reply to Re^2: How to print a multi-level Hashes of Hashes without the use of a module
in thread How to print a multi-level Hashes of Hashes and extract parts of it

Hello thanos1983,

I was not aware that you can call the same subroutine inside the actual subroutine.

This is a very important concept in computer science called recursion. It’s one of the key elements of the functional programming paradigm (think Lisp, Scheme, Haskell, ...), but is by no means limited to that paradigm. In fact, it’s something every programmer needs to know. Here are some references:

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

  • Comment on Re^3: How to print a multi-level Hashes of Hashes without the use of a module

Replies are listed 'Best First'.
Re^4: How to print a multi-level Hashes of Hashes without the use of a module
by thanos1983 (Parson) on Jan 25, 2015 at 13:27 UTC

    Hello Athanasius,

    Wow thank you for your time and effort providing me all these tutorials. To be honest at the beginning it was not the easiest thing to understand, but reading one after the other tutorial it started to make more sense. Thank you again for your time and effort.

    Seeking for Perl wisdom...on the process of learning...not there...yet!