added comments section to readme

This commit is contained in:
mediocregopher 2013-05-27 01:10:28 -04:00
parent 5184bb2f26
commit 801c5df9b6

View File

@ -95,3 +95,12 @@ be anything at all:
d (four five six) d (four five six)
e { 7 seven } } e { 7 seven } }
``` ```
## Comments
A semicolon delimits the beginning of a comment. Anything after the semicolon till the end of the line
is discarded by the parser:
```
;I am a comment
"I'm a string"
```