Files
VMBL/README.md
2025-12-21 05:47:15 +11:00

19 lines
408 B
Markdown

![Sylt Logo](assets/sylt.png)
# VMBL
- Virtual
- Machine
- Based
- Language
But uhh that's the name of the VM itself, the name of the programming language I made is Sylt, named after the German island.
To compile for Linux: `gcc src/main.c src/vmbl.c src/exception.c src/asm/tokenize.c -o VMBL -O3`
## Syntax
### Example "Hello, World!" Program
```kotlin
fun main() {
println("Hello, World!\n")
}
```