Files
VMBL/README.md

19 lines
389 B
Markdown
Raw Normal View History

2025-12-20 18:25:53 +11:00
![Sylt Logo](assets/sylt.png)
2025-12-19 16:32:24 +11:00
# VMBL
2025-12-20 18:25:53 +11:00
- Virtual
- Machine
- Based
- Language
2025-12-20 16:59:15 +11:00
2025-12-20 18:25:53 +11:00
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 -o VMBL -O3`
## Syntax
### Example "Hello, World!" Program
```kotlin
fun main() {
println("Hello, World!\n")
}
```