mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			193 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			193 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| var optionalString: String? = "Hello"
 | |
| optionalString == nil
 | |
| 
 | |
| var optionalName: String? = "John Appleseed"
 | |
| var greeting = "Hello!"
 | |
| if let name = optionalName {
 | |
|     greeting = "Hello, \(name)"
 | |
| }
 |