From eb9d9cc1771fc5f4d1720991ca50a7fa0d40d233 Mon Sep 17 00:00:00 2001 From: Brychan Dempsey Date: Mon, 29 Mar 2021 16:32:58 +1300 Subject: [PATCH] Udpated readme.md --- readme.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.md b/readme.md index e232276..ffc1c37 100644 --- a/readme.md +++ b/readme.md @@ -53,3 +53,12 @@ Would output: * It is possible to save the command list on `exit;`; this is prompted and guided. * The program instances its operation; at `exit;` you will have the option to load a new file or write a new program. * A quick help option is available by using the command `h` (semi-colon not required). + +**NB:** +* A double quote can be inserted into the literal by using a backslash immediately beforehand (i.e. `\"`) +```cs +set someVar "this literal \" has a value"; +``` +prints + +`this literal " has a value`