summary refs log tree commit diff stats
path: root/nim/interact.pas
diff options
context:
space:
mode:
Diffstat (limited to 'nim/interact.pas')
-rw-r--r--nim/interact.pas22
1 files changed, 22 insertions, 0 deletions
diff --git a/nim/interact.pas b/nim/interact.pas
new file mode 100644
index 000000000..ac238107f
--- /dev/null
+++ b/nim/interact.pas
@@ -0,0 +1,22 @@
+//
+//
+//           The Nimrod Compiler
+//        (c) Copyright 2008 Andreas Rumpf
+//
+//    See the file "copying.txt", included in this
+//    distribution, for details about the copyright.
+//
+unit interact;
+
+// This file implements interactive sessions.
+
+interface
+
+{$include 'config.inc'}
+
+uses
+  nsystem, llstream, strutils, charsets, ropes, strtabs, msgs;
+
+implementation
+
+end.