13 lines
167 B
Plaintext
13 lines
167 B
Plaintext
module;
|
|
|
|
type
|
|
ShortString = [256]Char;
|
|
Identifier = [256]Char;
|
|
PIdentifier = ^Identifier;
|
|
TextLocation* = record
|
|
line: Word;
|
|
column: Word
|
|
end;
|
|
|
|
end.
|