mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
24 lines
513 B
Nim
24 lines
513 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, parseopt, hashes, tables, sets
|
|
|
|
import os, strutils, times, parseutils, parseopt, hashes, tables, sets
|
|
|
|
|