Comment#
The Comment block is used to make notes in a VEXcode project TEST.
[comment]
Type inside the block to make any comments.
In this example, comments have been used to note what the 123 Robot is doing. This makes it easier to catch any errors in the project.
when started :: hat events
drive [forward v]
forever
[Check if the sound button is pressed.]
if <[soundIcon v] pressed? :: custom-sensing> then
[if the button is pressed, stop driving and stop checking.]
stop driving
break
end
end