Udpated readme.md
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Brychan Dempsey 2021-03-29 16:32:58 +13:00
parent eccecc15a9
commit eb9d9cc177

View File

@ -53,3 +53,12 @@ Would output:
* It is possible to save the command list on `exit;`; this is prompted and guided. * 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. * 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). * 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`