Loading...
Loading...
Loading Curriculum...
Loading Subject...
Loading Topic...
Loading Lesson...
Loading Lab...
Comments are non-executable text that help developers understand code. The compiler completely ignores them during compilation.
// This is a comment
Everything after // on that line is ignored by the compiler.
Use case: Quick notes, disabling one line/* This is a multi-line comment */
Everything between /* and */ is ignored, spanning multiple lines.
Use case: Block descriptions, documentation