summary refs log tree commit diff stats
path: root/lib/prelude.nim
diff options
context:
space:
mode:
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
+
+