Autolang
A language that combines static and dynamic features, designed to build large scripts, tools and embeded to environment safely and effectively
Get startedWhy Autolang ?
func factorial(n: Int): Int {
if (n <= 1) return 1
return n * factorial(n - 1)
}
val n = 5
println("Fractorial "+ n +" is: " + factorial(n)) 
Modern scripting. Native performance. Full control.
Autolang is a lightweight embeddable scripting language built for C++ applications.
It delivers expressive Kotlin-style syntax while maintaining a minimal and efficient runtime. Designed for:
- Game engines
- Tools and automation
- Embedded systems
- Extensible C++ applications
