mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 15:39:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			154 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			154 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example7;
 | 
						|
uses Crt;
 | 
						|
 | 
						|
{ Program to demonstrate the WhereX and WhereY functions. }
 | 
						|
 | 
						|
begin
 | 
						|
  Writeln('Cursor postion: X=',WhereX,' Y=',WhereY);
 | 
						|
end.
 |