mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 19:31:37 +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.
 | 
