mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			218 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			218 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
var shoppingList = ["catfish", "water", "tulips", "blue paint"]
 | 
						|
shoppingList[1] = "bottle of water"
 | 
						|
 | 
						|
var occupations = [
 | 
						|
    "Malcolm": "Captain",
 | 
						|
    "Kaylee": "Mechanic",
 | 
						|
 ]
 | 
						|
occupations["Jayne"] = "Public Relations"
 |