mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 11:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example8;
 | 
						|
uses Crt;
 | 
						|
 | 
						|
{ Program to demonstrate the ClrScr function. }
 | 
						|
 | 
						|
begin
 | 
						|
  Writeln('Press any key to clear the screen');
 | 
						|
  ReadKey;
 | 
						|
  ClrScr;
 | 
						|
  Writeln('Have fun with the cleared screen');
 | 
						|
end.
 |