Native Compiler (LLVM)
Your code is compiled to a native executable via LLVM 18 — a single engine, no interpreter and no bytecode VM.
Native Compiler via LLVM · Full LSP · Arabic Standard Library
Arabic has over 400 million native speakers, yet all major programming languages use English keywords. Sad removes this barrier so Arabic speakers can code in their native language.
# برنامج حساب الفيبوناتشي — Fibonacci Calculator
دالة فيبوناتشي(ن)
إذا (ن <= 1)
ارجع ن
نهاية
ارجع فيبوناتشي(ن - 1) + فيبوناتشي(ن - 2)
نهاية
لكل ي في [0، 1، 2، 3، 4، 5، 6، 7]
اطبع_سطر("فيبو(" + ي + ") = " + فيبوناتشي(ي))
نهايةirm https://sad-lang.org/install.ps1 | iexcurl -fsSL https://sad-lang.org/install.sh | bash