A Swahili Programming Language built from the ground up
NURU🔥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 nuru_Linux_amd64.tar.gz
```
- Confirm installation with:
```
nuru -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 nuru_Darwin_arm64.tar.gz
```
- For apple intel mac use:
```
sudo tar -C /usr/local/bin -xzvf nuru_Darwin_amd64.tar.gz
```
- Confirm installation with:
```
nuru -v
```
### Android (Termux)
To install Nuru on your Android device using Termux, follow these steps:
1. **Ensure Termux is installed**:
- You can download and install Termux.
2. **Create the target directory**:
```bash
mkdir -p /data/data/com.termux/files/usr/share/nuru
```
3. **Download the Nuru package**:
```bash
curl -O -L
github.com
```
4. **Extract the files to the target directory**:
```bash
tar -xzvf nuru_Android_arm64.tar.gz -C /data/data/com.termux/files/usr/share/nuru
```
5. **Set up an alias for easy access**:
```bash
echo "alias nuru='/data/data/com.termux/files/usr/share/nuru/nuru'" >> ~/.bashrc
```
6. **Reload the .bashrc file to apply the alias**:
```bash
source ~/.bashrc
```
7. **Verify the installation**:
```bash
nuru -v
` …