bobbimanners / EightBall

The Eight Bit Algorithmic Language for Apple II, Commodore 64 and VIC20
GNU General Public License v3.0
19 stars 3 forks source link

Full line comments #7

Open bobbimanners opened 6 years ago

bobbimanners commented 6 years ago

Right now the comment character ' is handled as a command, which means that a semicolon is needed to comment after a statement:

pr.msg  "Hello" ; ' Say hello

This is a bit ugly. The ' character should probably be handled in the parser itself so everything from ' to newline is ignored.