A small, class-based programming language that's a joy to use.
Embeddable
Extend and build applications in Go utilizing Zaidlang as your scripting language.
Small
Zaidlang maintains a small footprint (less than 10 MB), making it portable and great for single-board computers.
Class-based
Zaidlang places classes front and center, fully embracing object-oriented programming.
class CoffeeMaker {
function constructor(coffee) {
this.coffee = coffee
}
function brew() {
printftw('Enjoy your cup of %s'.format(this.coffee))
}
}
maker = CoffeeMaker.new('espresso')
maker.brew()
>>> Enjoy your cup of espresso