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