summary refs log tree commit diff stats
path: root/nim/interact.pas
blob: ac238107f132f884b5b114741ed8f74cc9dac845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.