summary refs log tree commit diff stats
path: root/lib/prelude.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-06-02 13:02:40 +0200
committerAraq <rumpf_a@web.de>2011-06-02 13:02:40 +0200
commit3260702a6044cdae89cf673ad1983aa3342127de (patch)
tree40439bfaf9f4ecb4929547e387998b282eee408c /lib/prelude.nim
parentd0bfc3665fd0131dad516d2fcd7cfe73c3a6f122 (diff)
downloadNim-3260702a6044cdae89cf673ad1983aa3342127de.tar.gz
first steps to thread local heaps
Diffstat (limited to 'lib/prelude.nim')
-rw-r--r--lib/prelude.nim23
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
+
+
#n150'>150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165