rsc3/doc-schelp/HelpSource/Reference/Comments.schelp

20 lines
325 B
Text
Raw Normal View History

2022-08-24 13:53:18 +00:00
title:: Comments
categories:: Language
summary:: source-code comments
Comments begin with code:://:: and go until the end of the line. Comments can also be delimited with code::/*:: and code::*/::.
Examples:
code::
// single line comment
/*
multi
line
comment
*/
/* Unlike C, you can have /* nested */ comments */
::