Use var instead of let for variables

This commit is contained in:
Stone_Red
2026-03-04 14:55:09 +01:00
parent a5f521912e
commit d4cc1d1c28
10 changed files with 69 additions and 59 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ Current language syntax is documented in [SYNTAX_V2.md](SYNTAX_V2.md).
Example:
```ynt
let name = world
var name = world
print_line Hello ${name}
```
@@ -18,3 +18,4 @@ print_line Hello ${name}
```bash
dotnet run --project YesNt.Interpreter -- path/to/script.ynt
```