Skip to content

Comments

Overview

Comments are sections of text that are ignored during compilation.

Syntax

// i'm a single line comment

/*

i'm a
MULTI LINE
comment

*/

Rules

Single Line Comments

Characters between (and including) a // and the next line break or end-of-file MUST be ignored during compilation.

Multi-Line Comments

Characters between (and including) a /* and the next */ or end-of-file MUST be ignored during compilation.