@@ -21,7 +21,7 @@ To get started download the executables from the release page or follow the inst
21
21
- Download the binary:
22
22
23
23
```
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
25
25
```
26
26
27
27
- Extract the file to make global available:
@@ -44,13 +44,13 @@ nuru -v
44
44
- For apple silicon mac use:
45
45
46
46
```
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
48
48
```
49
49
50
50
- For apple intel mac use:
51
51
52
52
```
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
54
54
```
55
55
56
56
- Extract the file to make global available:
@@ -88,7 +88,7 @@ To install Nuru on your Android device using Termux, follow these steps:
88
88
89
89
3 . ** Download the Nuru package** :
90
90
``` 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
92
92
```
93
93
94
94
4 . ** Extract the files to the target directory** :
@@ -114,14 +114,14 @@ To install Nuru on your Android device using Termux, follow these steps:
114
114
For a more streamlined installation, you can use the following one-liner:
115
115
116
116
``` 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.."
118
118
```
119
119
120
120
121
121
### Windows
122
122
123
123
- 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 )
125
125
- Unzip to get the executable
126
126
- Double click the executable
127
127
@@ -176,8 +176,8 @@ Nuru supports both single line and multiple line comments as shown below:
176
176
/*
177
177
Multiple
178
178
Line
179
- Comment
180
- */
179
+ Comment
180
+ */
181
181
```
182
182
183
183
### Arithmetic Operations
@@ -292,7 +292,7 @@ Nuru also supports dictionaries and you can do a lot with them as follows:
292
292
```
293
293
mtu = {"jina": "Mojo", "kabila": "Mnyakusa"}
294
294
295
- // get value from key
295
+ // get value from key
296
296
andika(mtu["jina"]) // output = Mojo
297
297
298
298
andika(mtu["kabila"]); // output = Mnyakusa
0 commit comments