7 lines
74 B
Text
7 lines
74 B
Text
|
|
program cursor_pos;
|
||
|
|
uses crt;
|
||
|
|
begin
|
||
|
|
gotoxy(6,3);
|
||
|
|
write('Hello');
|
||
|
|
end.
|