home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
TURBO2_1.ZIP
/
PROG15A.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1976-11-24
|
384 b
|
16 lines
PROGRAM PROG15A;
{$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved.
New Topics: Cursor location
VAR
X, Y : Integer;
BEGIN
ClrScr;
Write('Enter X and Y: ');
ReadLn(X, Y);
GotoXY(X, Y);
WriteLn(X,' ',Y);
END.