๐Ÿ”Introduction - Zaidlang

What is Zaidlang?

A small, class-based programming language that's a joy to use.

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
  • 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.

Last updated

Was this helpful?