mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
23 lines
382 B
ObjectPascal
Executable File
23 lines
382 B
ObjectPascal
Executable File
//
|
|
//
|
|
// 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, nstrtabs, msgs;
|
|
|
|
implementation
|
|
|
|
end.
|