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