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