blob: 4d8c7d7f0919825546f41a5f6360a7d1f1dd19e7 (
plain) (
tree)
|
|
#
#
# 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
|