mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-30 21:21:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
| func test():
 | |
| 	# Mixing Python-style and Lua-style syntax in the same dictionary declaration
 | |
| 	# is allowed.
 | |
| 	var dict = {
 | |
| 		"hello": {
 | |
| 			world = {
 | |
| 				"is": "beautiful",
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	print(dict)
 | 
