in reply to Re^8: Meta-perl - sorting my perl subs with perl?
in thread Meta-perl - sorting my perl subs with perl?

Considering the site is about Perl, the thread mentions perl, and we're discussing where to place POD, where do you the impression from that we're talking about editing Emacs Lisp?

I certainly am not.

  • Comment on Re^9: Meta-perl - sorting my perl subs with perl?

Replies are listed 'Best First'.
Re^10: Meta-perl - sorting my perl subs with perl?
by LanX (Saint) on Jan 25, 2012 at 00:11 UTC
    What educated_foo is trying to explain is that the tight association between docstrings and functions facilitates writing/understanding code with such functions.

    And it's not limited to the emacs editor as you're trying to imply.

    I recently heard a long rant about how inferior the perldebugger is in comparison to a certain Python REPL, where imported methods are not only tab-expanded but also dynamically explained by help of the docstring.

    That's only possible because the documentation is part of the introspection.

    And nobody said that the higher level documentation shouldn't be done somewhere a big POD block or that deeper information to certain functions couldn't be located there.

    Cheers Rolf

      bpython for an example: http://bpython-interpreter.org/screenshots/
        bpython indeed!

        Thanks!

        Cheers Rolf