๐Getting Started
Learn how to get Zaidlang up and running on your local machine.
What is Zaidlang?
Zaidlang is a small, class-based scripting language.
Installing Zaidlang
Direct Download
You may download the compiled binaries for your platform from our GitHub releases page.
zaidlang_1.0.0_windows_amd64.zip (Recomended for Intel Chip PCs)
2.16 MB
For Windows
Once extracted put the folder to "C:\Program Files"
After the copy the folders path and setup the environment variable using this blog.
Brew๐บ(Let us kow if it works)
If you're on Mac, you may use homebrew
:
Go Install (Not working currently)
If you have Go installed, you may use go install
:
Building Zaidlang
If you're on a Unix or Mac machine, you can easily download the source code and build directly:
This downloads and builds the latest version of Zaidlang found on GitHub. You will be put inside a fresh instance of zaid
if everything was successful.
Interactive Mode
If you just run zaid
without any arguments, it starts the interpreter in interactive mode (aka, REPL mode, read-eval-print loop). You can type in a line of code, and immediately execute it. While in this mode, your state is saved until you exit the program. Meaning if you define a variable, you may reference the variable later on.
Ready to give Zaidlang a spin?
Once you have Zaidlang setup and installed, you're ready to jump into learning the language.
Last updated