Appearance
You can add comments to your code with the usual # or // characters. To make multi-line comments, use /* to start and */ to end.
#
//
/*
*/
# This is a comment // This is also a comment /* This is a multi-line comment */
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