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

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

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

Replies are listed 'Best First'.
Re^11: Meta-perl - sorting my perl subs with perl?
by Anonymous Monk on Jan 25, 2012 at 04:50 UTC
    bpython for an example: http://bpython-interpreter.org/screenshots/
      bpython indeed!

      Thanks!

      Cheers Rolf