mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 10:52:14 +00:00
* add sequtils to prelude i would argue that sequtils is used just as often as the other imports in prelude, and it'd be nice for it to be included. * updated doc comment to add sequtils * added sequtils import to changelog
24 lines
592 B
Nim
24 lines
592 B
Nim
#
|
|
#
|
|
# Nim's Runtime Library
|
|
# (c) Copyright 2012 Andreas Rumpf
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
#
|
|
|
|
## This is an include file that simply imports common modules for your
|
|
## convenience:
|
|
##
|
|
## .. code-block:: nim
|
|
## include prelude
|
|
##
|
|
## Same as:
|
|
##
|
|
## .. code-block:: nim
|
|
## import os, strutils, times, parseutils, hashes, tables, sets, sequtils
|
|
## when not defined(js): import parseopt
|
|
|
|
import os, strutils, times, parseutils, hashes, tables, sets, sequtils
|
|
when not defined(js): import parseopt
|