@@ -21,7 +21,7 @@ To get started download the executables from the release page or follow the inst
2121 - Download the binary:
2222
2323```
24- curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Linux_amd64.tar.gz
24+ curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Linux_amd64.tar.gz
2525```
2626
2727 - Extract the file to make global available:
@@ -44,13 +44,13 @@ nuru -v
4444 - For apple silicon mac use:
4545
4646 ```
47- curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Darwin_arm64.tar.gz
47+ curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Darwin_arm64.tar.gz
4848 ```
4949
5050 - For apple intel mac use:
5151
5252 ```
53- curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Darwin_amd64.tar.gz
53+ curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Darwin_amd64.tar.gz
5454 ```
5555
5656- Extract the file to make global available:
@@ -88,7 +88,7 @@ To install Nuru on your Android device using Termux, follow these steps:
8888
89893 . ** Download the Nuru package** :
9090 ``` bash
91- curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Android_arm64.tar.gz
91+ curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Android_arm64.tar.gz
9292 ```
9393
94944 . ** Extract the files to the target directory** :
@@ -114,14 +114,14 @@ To install Nuru on your Android device using Termux, follow these steps:
114114For a more streamlined installation, you can use the following one-liner:
115115
116116``` bash
117- curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Android_arm64.tar.gz && mkdir -p /data/data/com.termux/files/usr/share/nuru && tar -xzvf nuru_Android_arm64.tar.gz -C /data/data/com.termux/files/usr/share/nuru && echo " alias nuru='/data/data/com.termux/files/usr/share/nuru/nuru'" >> ~ /.bashrc && source ~ /.bashrc && echo " Installation complete.."
117+ curl -O -L https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Android_arm64.tar.gz && mkdir -p /data/data/com.termux/files/usr/share/nuru && tar -xzvf nuru_Android_arm64.tar.gz -C /data/data/com.termux/files/usr/share/nuru && echo " alias nuru='/data/data/com.termux/files/usr/share/nuru/nuru'" >> ~ /.bashrc && source ~ /.bashrc && echo " Installation complete.."
118118```
119119
120120
121121### Windows
122122
123123- Executable:
124- - Download the Nuru zip file [ Here] ( https://github.com/NuruProgramming/Nuru/releases/download/v0.5.16 /nuru_Windows_amd64.zip )
124+ - Download the Nuru zip file [ Here] ( https://github.com/NuruProgramming/Nuru/releases/download/v0.5.17 /nuru_Windows_amd64.zip )
125125 - Unzip to get the executable
126126 - Double click the executable
127127
@@ -176,8 +176,8 @@ Nuru supports both single line and multiple line comments as shown below:
176176/*
177177Multiple
178178Line
179- Comment
180- */
179+ Comment
180+ */
181181```
182182
183183### Arithmetic Operations
@@ -292,7 +292,7 @@ Nuru also supports dictionaries and you can do a lot with them as follows:
292292```
293293mtu = {"jina": "Mojo", "kabila": "Mnyakusa"}
294294
295- // get value from key
295+ // get value from key
296296andika(mtu["jina"]) // output = Mojo
297297
298298andika(mtu["kabila"]); // output = Mnyakusa
0 commit comments