mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			152 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			152 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| (int, int) nested_if(int id) method_id {
 | |
|   dump_stack();
 | |
|   if (id > 0) {
 | |
|     if (id > 10) {
 | |
|       return (2 * id, 3 * id);
 | |
|     }
 | |
|   }
 | |
|   return (5, 6);
 | |
| }
 |