Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d91dd5a commit 436afa2Copy full SHA for 436afa2
getting-started/recursion.markdown
@@ -13,7 +13,7 @@ Due to immutability, loops in Elixir (as in any functional programming language)
13
14
```javascript
15
for(i = 0; i < array.length; i++) {
16
- array[i] = array[i] * 2
+ array[i] = array[i] * 2;
17
}
18
```
19
0 commit comments