We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
I'm just discovering moonscript and it's a beautiful language ! big big kuddos !
I'm looking at a way to self document my function in moonscript so I can have something similar to python:
f = (x) -> x + 5 f.doc = 'add five to a number' help(f) -- print 'add five to a number'
The text was updated successfully, but these errors were encountered:
The language doesn't manage this itself (Lua doesn't either), but you can use a tool like LDoc to generate a documentation page for you: https://github.com/lunarmodules/LDoc
Sorry, something went wrong.
No branches or pull requests
Hello
I'm just discovering moonscript and it's a beautiful language ! big big kuddos !
I'm looking at a way to self document my function in moonscript so I can have something similar to python:
The text was updated successfully, but these errors were encountered: