logo!!!! :D (thanks Max)

This commit is contained in:
SpookyDervish
2025-12-20 18:25:53 +11:00
parent b12998afa6
commit 76be037e32
6 changed files with 123 additions and 19 deletions

View File

@@ -1,5 +1,19 @@
![Sylt Logo](assets/sylt.png)
# VMBL
virtual machine based language lol
- Virtual
- Machine
- Based
- Language
to compile: `gcc src/main.c src/vmbl.c src/exception.c -o VMBL -O3`
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")
}
```