mirror of
				https://github.com/fmtlib/fmt.git
				synced 2025-11-04 08:01:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			151 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "cppformat/format.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  for(int i = 0; i < argc; ++i)
 | 
						|
    fmt::print("{}: {}\n", i, argv[i]);
 | 
						|
  return 0;
 | 
						|
}
 |