mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| int cond(int a)
 | |
| {
 | |
|     int v = 2;
 | |
|     if (a == 1)
 | |
|     {
 | |
|         v += 5;
 | |
|     }
 | |
| 
 | |
|     return v;
 | |
| }
 | |
| 
 | |
| extern "C" int _start()
 | |
| {
 | |
|     return cond(0);
 | |
| }
 | 
