Remarks about remarks

BP2 supports four styles of remarks:

• AppleScript® or HyperTalk® style ( in scripts only ): inserting "--" forces the compiler to ignore the next characters till the end of the current line. Example:
Activate window Scrap -- this is an AppleScript style remark

• BP1 style: the remark is between square brackets. Example:
S --> do4 re4 [This a BP1 style remark]

• old C style: the remark starts with "/*" and ends with "*/". It may contain several lines. Example:
/* This an old C style remark */

• new C style: any line starting with "//" is ignored. Example:
// This is a new C style remark