SyBL Symbol Programming Language
Extension for SyBL programming language support in Visual Studio Code.
📥 Download SyBL Interpreter
Get SyBL: Download from GitHub Releases
- Download
sybl-windows.zip
- Extract to any folder
- Double-click
install.reg
- Now
.syb
files run with double-click!
✨ Features
- Syntax highlighting for
.syb
files
- Auto-closing brackets and quotes
- Comment support (
;:
)
- Variable recognition (
$%name%
)
🚀 Quick Example
Create hello.syb
:
;: My first SyBL program
>_ "Hello, World!"
name =#= "Developer"
age =$= 25
>_ "Hello, $%name%!"
>_ "You are $%age% years old"
Double-click to run!
📖 SyBL Syntax
Variables
number =$= 42 ;: Integer
pi =$.$= 3.14 ;: Float
text =#= "Hello" ;: String
flag =&= + ;: Boolean
Output & Variables
>_ "Simple text"
>_ "Value: $%number%" ;: Variable in text
Math Operations
result =$= a + b ;: +, -, *, /
Conditions
?(age >= 18)?
>_ "Adult"
?end?
Loops
@(i < 5)@
>_ "Count: $%i%"
@end@
🛠️ Usage
- Install this extension for syntax highlighting
- Download SyBL interpreter from GitHub
- Create
.syb
files and double-click to run
- Use VS Code for editing with beautiful syntax highlighting
SyBL works like Python - just double-click to run! 🎉