mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 14:12:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			213 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			213 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| program atx;
 | |
| 
 | |
| var f:text;
 | |
|     s:string;
 | |
| 
 | |
| begin
 | |
|     assign(f,'c:\autoexec.bat');
 | |
|     reset(f);
 | |
|     while not eof(f) do
 | |
|         begin
 | |
|             readln(f,s);
 | |
|             writeln(s);
 | |
|         end;
 | |
|     close(f);
 | |
| end.
 | 
