Is it possible to use docmods to document individual source files? I'm not making a module, I just want to make a list of methods from my objects to keep myself a little better organized.
Thanks,
MadCat13
I don't think so, as docmods functionality is specting a module name as a parameter to work.
Ah, well. It wasn't really that big of a deal :)
Thanks for the reply,
MadCat13
You could always just compile the file as a module and then import it as such.
That works well after you're done with a source-file, but of course isn't so practical when the file in question is being updated regularly. ;)