{
and end with a }
. What this does is nest the code with the {
and }
meaning that the code is only executed when the statement before it is active.combo_run(RAPID_FIRE);
will automatically be nested within the if
statement. If you wish for more than one line of code to only be executed when the statement before them is active, then you must use {
and }
.//
(two slashes) characters creates a single line comment and can be followed by any sequence of character. A new line terminates this form of comment. As shown below