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
We need to create user documentation for the commenting feature.
Create a section in the documentation that explains how to use comments in bend. This should cover both single-line and multi-line comments.
Key points to include:
#
#{
#}
The text was updated successfully, but these errors were encountered:
We should also meant that documentation for functions is meant to be written as a multiline comment rightt above the function. Eg:
#{ Returns the list with the elements in the reverse order. }# List/reverse(xs): ...
For now it doesn't to anything, but that's how we want to use it
Sorry, something went wrong.
No branches or pull requests
We need to create user documentation for the commenting feature.
Tasks:
Create a section in the documentation that explains how to use comments in bend. This should cover both single-line and multi-line comments.
Key points to include:
1. Single-line comments:
#
at the beginning of a line or after code2. Multi-line comments:
#{
to start and#}
to end a multi-line commentThe text was updated successfully, but these errors were encountered: