mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 20:12:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			173 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			173 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program example82;
 | |
| 
 | |
| { Program to demonstrate the BinStr function }
 | |
| 
 | |
| Const Value = 45678;
 | |
| 
 | |
| Var I : longint;
 | |
| 
 | |
| begin
 | |
|   For I:=8 to 20 do
 | |
|     Writeln (BinStr(Value,I):20);
 | |
| end.
 | 
