mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 17:31:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			252 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example4;
 | |
| uses Crt;
 | |
| 
 | |
| { Program to demonstrate the TextMode function. }
 | |
| 
 | |
| begin
 | |
|   TextMode(CO40); {Only clears screen under linux}
 | |
|   WriteLn('Mode 40x25 Color');
 | |
|   ReadKey;
 | |
|   TextMode(CO80);
 | |
|   WriteLn('Back in Mode 80x25 Color');
 | |
|   ReadKey;
 | |
| end.
 | 
