mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-10-31 14:11:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			133 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			133 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "fmt/format.h"
 | |
| 
 | |
| int main(int argc, char** argv) {
 | |
|   for(int i = 0; i < argc; ++i)
 | |
|     fmt::print("{}: {}\n", i, argv[i]);
 | |
| }
 |