mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| if 1:
 | |
|     print("Hello " + "world")
 | |
|     if 0:
 | |
|         print("then")
 | |
|         print("clause")
 | |
|     elif 1:
 | |
|         pass
 | |
|     elif 1:
 | |
|         pass
 | |
|     else:
 | |
|         print("else-clause")
 | 
