Skip to content

Comments

You can add comments to your code with the usual # or // characters. To make multi-line comments, use /* to start and */ to end.

Examples

js
# This is a comment
// This is also a comment
/*
    This is a multi-line comment
*/

Released under the MIT License.