home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
106
/
pascal
/
prog15a.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1987-02-20
|
261 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.
ə