Skip to content

Commit 8c487a0

Browse files
committed
Small changes to article.
1 parent 547e9e5 commit 8c487a0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

jekyll/_posts/2018-03-01-version-0180-released.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ If you don't have it already, you can get ``choosenim`` by following
2020
[these instructions](https://github.com/dom96/choosenim) or you can install
2121
Nim manually by following the instructions on our
2222
[install](https://nim-lang.org/install.html) page.
23+
Note that Windows users might still have an easier time with the
24+
unzip+finish.exe method of installing Nim which is described on the
25+
[install](https://nim-lang.org/install.html) page.
2326

2427
# What's new in 0.18.0
2528

@@ -139,8 +142,8 @@ This is a new macro that allows you to easily create array and sequence literals
139142
```nim
140143
import sequtils
141144
142-
let x = mapLiterals([0.1, 1.2, 2.3, 3.4], int)
143-
doAssert x is array[4, int]
145+
let x = mapLiterals([12, 34, 15, 1], uint32)
146+
doAssert x is array[4, uint32]
144147
```
145148

146149
## New memory manager algorithm

0 commit comments

Comments
 (0)