Make syntax more readable

This commit is contained in:
Stone_Red
2026-03-04 14:04:00 +01:00
parent 11200cbff8
commit 9d43f1373f
12 changed files with 216 additions and 98 deletions
+16 -1
View File
@@ -2,4 +2,19 @@
> YesNt is a imperative and interpreted language inspired by the Assembly language.
Check out the [Wiki](https://github.com/Stone-Red-Code/YesNt-Interpreter/wiki) (Work in progress)
## Syntax
Current language syntax is documented in [SYNTAX_V2.md](SYNTAX_V2.md).
Example:
```ynt
let name = world
print_line Hello ${name}
```
## Run
```bash
dotnet run --project YesNt.Interpreter -- path/to/script.ynt
```