Comments in PBasicΒΆ

Comments in PBasic are ignored when the program runs. Think of it as a way to make notes of what your program does at certain situations so you can remember later. In PBasic, the way comments are denoted is by using the apostrophe symbol:

For example:

1
2
3
4
5
' This is a comment!

DEBUG "Hello World!"

' Another comment!!!