mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			126 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			No EOL
		
	
	
		
			126 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| int add(int a, int b)
 | |
| {
 | |
|     int c = a + b;
 | |
|     return c == 0 ? 50000 : c;
 | |
| }
 | |
| 
 | |
| extern "C" int _start()
 | |
| {
 | |
|     return add(1, 2);
 | |
| } | 
