From 801c5df9b67c96d00ccc60fb364c3b2cc7d76685 Mon Sep 17 00:00:00 2001 From: mediocregopher Date: Mon, 27 May 2013 01:10:28 -0400 Subject: [PATCH] added comments section to readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 8252341..44b7bf1 100644 --- a/README.md +++ b/README.md @@ -95,3 +95,12 @@ be anything at all: d (four five six) 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" +```