summary refs log tree commit diff stats
path: root/doc/steps.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/steps.txt')
-rw-r--r--doc/steps.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/doc/steps.txt b/doc/steps.txt
deleted file mode 100644
index 89339377b..000000000
--- a/doc/steps.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-==============================
-First steps after installation
-==============================
-
-This document explains how to *use* the Nimrod compiler.
-Open your favourite text editor and type (or download it
-`here <download/code/hallo.nim>`_):
-
-.. code-block:: nimrod
-   :file: ../tests/hallo.nim
-
-Save this file as ``hallo.nim`` somewhere (I refer to the location as
-``$yourloc``). Now open a console and call the Nimrod compiler::
-
-  nimrod compile --run $yourloc/hallo
-
-The ``--run`` switch tells Nimrod that it should run the generated
-executable after successful compilation. If things don't work,
-check if Nimrod's ``bin`` directory is in your path environment
-variable. On Windows the directory ``dist\llvm-gcc4.2\bin`` may
-also be required in your path.
-
-Note that Nimrod produced a standalone native executable in
-``$yourloc`` that you can run without the Nimrod compiler.