diff options
author | Araq <rumpf_a@web.de> | 2011-06-02 13:02:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-06-02 13:02:40 +0200 |
commit | 3260702a6044cdae89cf673ad1983aa3342127de (patch) | |
tree | 40439bfaf9f4ecb4929547e387998b282eee408c /lib/prelude.nim | |
parent | d0bfc3665fd0131dad516d2fcd7cfe73c3a6f122 (diff) | |
download | Nim-3260702a6044cdae89cf673ad1983aa3342127de.tar.gz |
first steps to thread local heaps
Diffstat (limited to 'lib/prelude.nim')
-rw-r--r-- | lib/prelude.nim | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/prelude.nim b/lib/prelude.nim new file mode 100644 index 000000000..372708f31 --- /dev/null +++ b/lib/prelude.nim @@ -0,0 +1,23 @@ +# +# +# Nimrod's Runtime Library +# (c) Copyright 2011 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:: nimrod +## include prelude +## +## Same as: +## +## .. code-block:: nimrod +## import os, strutils, times, parseutils, parseopt + +import os, strutils, times, parseutils, parseopt + + |