Jambo🔥PROGRAMMING🔥LANGUAGE
A Swahili Programming Language of its kind built from the ground up.
## Installation
To get started download the executables from the release page or follow the instructions for your device below:
### Linux
- Download the binary:
```
curl -O -L
github.com
```
- Extract the file to make global available:
```
sudo tar -C /usr/local/bin -xzvf jambo_Linux_amd64.tar.gz
```
- Confirm installation with:
```
jambo -v
```
### MacOs ( Apple silicon Mac )
- Download the binary:
- For apple silicon mac use:
```
curl -O -L
github.com
```
- For apple intel mac use:
```
curl -O -L
github.com
```
- Extract the file to make global available:
- For apple silicon mac use:
```
sudo tar -C /usr/local/bin -xzvf jambo_Darwin_arm64.tar.gz
```
- For apple intel mac use:
```
sudo tar -C /usr/local/bin -xzvf jambo_Darwin_amd64.tar.gz
```
- Confirm installation with:
```
jambo -v
```
### Android (Termux)
- Make sure you have Termux installed.
- Download the binary with this command:
```
curl -O -L
github.com
```
- Extract the file:
```
tar -xzvf jambo_Android_arm64.tar.gz
```
- Add it to path:
```
echo "alias jambo='~/jambo'" >> .bashrc
```
- Confirm installation with:
```
jambo -v
```
### Windows
- Executable:
- Download the Jambo zip file Here
- Unzip to get the executable
- Double click the executable
- Jambo Installer
> Coming Soon
### Building From Source
- Make sure you have golang installed (atleast 1.19.0 and above)
- Run the following command:
```
go build -o jambo main.go
```
- You can optionally add the binary to $PATH as shown above
- Confirm installtion with:
```
jambo -v
```
## Syntax At A Glance
**NOTE**
> Ther …