mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
21 lines
323 B
Markdown
21 lines
323 B
Markdown
# YesNt
|
|
|
|
> YesNt is a imperative and interpreted language inspired by the Assembly language.
|
|
|
|
## 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
|
|
```
|