From ef72415c218e1a38571a8fddb8da18625cba0a08 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 2 Nov 2024 11:52:54 +1100 Subject: [PATCH] Updated README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 11b395c..69b950d 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,9 @@ var foobar = 42; var foobar = foobar * 7; } +//the types default to 'any' but can be specified if needed (same with constants) +var immutable: string const = "Foobar"; + //more examples to be added as the features are implemented ```