From 069e3d89e65e5888dee78dffa5b84fa9464eb52c Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Tue, 31 Jan 2023 23:41:50 +1100 Subject: [PATCH] Added escaped character list --- quick-start-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick-start-guide.md b/quick-start-guide.md index 2dc5d20..5e16438 100644 --- a/quick-start-guide.md +++ b/quick-start-guide.md @@ -14,7 +14,7 @@ print "Hello world"; ## Names and Variables -Variables can store data of any kind, unless a type is specified; see [types](types). Names can be up to 256 characters long. +Variables can store data of any kind, unless a type is specified; see [types](types). Names can be up to 256 characters long; see [Reserved Keywords](#reserved-keywords) for a list of keywords that can't be used as a name. ``` var b = true; @@ -23,7 +23,7 @@ var f = 3.14; var s = "Hello world"; ``` -See [Reserved Keywords](#reserved-keywords) for a list of keywords that can't be used as a name. +Strings can be 4096 characters long, and the following characters can be escaped: `/n`, `/t`, `//` and `/"`. ## Compounds