Files
VMBL/README.md
SpookyDervish b7814401c8 i hate my life
2025-12-21 16:26:26 +11:00

20 lines
533 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 the VM for Linux: `gcc src/main.c src/vmbl.c src/exception.c src/file_utils.c -o vmbl -O3`
To compile SASM for Linux: `gcc src/asm/sasm.c src/asm/instructions.c src/file_utils.c src/asm/assembler.c -o sasm -O3`
## Syntax
### Example "Hello, World!" Program
```kotlin
fun main() {
println("Hello, World!\n")
}
```