mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			143 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			143 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
class Shape {
 | 
						|
    var numberOfSides = 0
 | 
						|
    func simpleDescription() -> String {
 | 
						|
        return "A shape with \(numberOfSides) sides."
 | 
						|
    }
 | 
						|
}
 |