Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
		
			
				
	
	
		
			9 lines
		
	
	
		
			192 B
		
	
	
	
		
			Raku
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			192 B
		
	
	
	
		
			Raku
		
	
	
	
	
	
/* n_ppnum.t:   Preprocessing number token *p+* */
 | 
						|
/* Undefined on C90, because '+A' is not a valid pp-token.  */
 | 
						|
 | 
						|
#define A   3
 | 
						|
#define glue( a, b) a ## b
 | 
						|
/*  12p+A;  */
 | 
						|
    glue( 12p+, A);
 | 
						|
 |