Comments
<< Click to Display Table of Contents >> Navigation: Reference > Comments |
You can have both line comments and multiline comments. Single line comments start with a double slash and end at the line end.
// This is a line comment
Block comments start with /* and end with */ and they can be nested.
/*
This is a
multiline comment and
/* you can nest multiline comments */
as well
*/