mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-01 00:10:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			257 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example57;
 | |
| 
 | |
| { Program to demonstrate the SeekEof function. }
 | |
| Var C : Char;
 | |
| 
 | |
| begin
 | |
|   { this will print all characters from standard input except
 | |
|     Whitespace characters. }
 | |
|   While Not SeekEof do
 | |
|     begin
 | |
|     Read (C);
 | |
|     Write (C);
 | |
|     end;
 | |
| end.
 | 
