diff options
-rw-r--r-- | changelog.md | 2 | ||||
-rw-r--r-- | lib/prelude.nim | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md index 89d8fd423..c2a146c01 100644 --- a/changelog.md +++ b/changelog.md @@ -70,6 +70,8 @@ and `lists.toDoublyLinkedList` convert from `openArray`s; `lists.copy` implements shallow copying; `lists.add` concatenates two lists - an O(1) variation that consumes its argument, `addMoved`, is also supplied. + +- Added `sequtils` import to `prelude`. ## Language changes diff --git a/lib/prelude.nim b/lib/prelude.nim index 47a5af89e..4d8c7d7f0 100644 --- a/lib/prelude.nim +++ b/lib/prelude.nim @@ -16,8 +16,8 @@ ## Same as: ## ## .. code-block:: nim -## import os, strutils, times, parseutils, hashes, tables, sets +## import os, strutils, times, parseutils, hashes, tables, sets, sequtils ## when not defined(js): import parseopt -import os, strutils, times, parseutils, hashes, tables, sets +import os, strutils, times, parseutils, hashes, tables, sets, sequtils when not defined(js): import parseopt |