summary refs log tree commit diff stats
path: root/lib/prelude.nim
blob: 47a5af89e81eb31c793589acc5b51f1517092dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
#
#            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
##   when not defined(js): import parseopt

import os, strutils, times, parseutils, hashes, tables, sets
when not defined(js): import parseopt