Skip to content

Instantly share code, notes, and snippets.

@dineshba
Last active May 22, 2018 18:09
Show Gist options
  • Save dineshba/46dc7586cfd9a01ba62e21febdaffcc5 to your computer and use it in GitHub Desktop.
Save dineshba/46dc7586cfd9a01ba62e21febdaffcc5 to your computer and use it in GitHub Desktop.
struct Square {
let size: Int
var area: Int { // var computedProperty: ReturnType {
return size * size // return (compute from other instance variables)
} // }
var perimeter: Int {
return 4 * size
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment