Created
July 7, 2018 21:31
-
-
Save halilozel1903/e19024cf8b3f0773f42edd58d2a18ce2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Shape { | |
| var numberOfSides = 0 | |
| func simpleDescription() -> String { | |
| return "A shape with \(numberOfSides) sides." | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment