Comment#

The Comment block is used to make notes in a VEXcode project.

a VEXcode stack of code blocks containing a comment block#
    [comment]

Type inside the block to make any comments.

In this example, comments have been used to note what the robot is doing. This makes it easier to catch any errors in the project.

a VEXcode stack of code blocks containing a “when started” hat block that drives forward for 200 mm, which has a comment block above it that says drive forward for 200mm, turns right for 3 seconds, and then stops driving once the Drivetrain finishes turning.#
  when started :: hat events
  [Drive forward for 200mm.]
  drive [forward v] for (200) [mm v] ▶
  [Turn right for 3 seconds.]
  turn [right v]
  wait (3) seconds
  [Stop driving once the Drivetrain is done turning.]
  stop driving