From 1817383ce59eef8ac8bfcfa7b63ba89959c2de65 Mon Sep 17 00:00:00 2001 From: konqoro Date: Wed, 7 Sep 2016 01:53:39 +0300 Subject: [PATCH] Updated Nim for Python Programmers (markdown) --- Nim-for-Python-Programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nim-for-Python-Programmers.md b/Nim-for-Python-Programmers.md index 7bb02f3..bc1641c 100644 --- a/Nim-for-Python-Programmers.md +++ b/Nim-for-Python-Programmers.md @@ -183,7 +183,7 @@ echo lc[ y*2 | ( y <- x ), int ] ### Python sets -Python sets are not like [Nim set type](http://nim-lang.org/docs/manual.html#set-type). +Python sets are not like [Nim set type](http://nim-lang.org/docs/manual.html#types-set-type). If the values that will go in the set are known beforehand and finite, you can create an Enum for them. Otherwise you can emulate a Python set using a [HashSet](http://nim-lang.org/docs/sets.html). The Nim set type is faster and memory-efficient.