mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +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."
|
|
}
|
|
}
|