Skip to content

Instantly share code, notes, and snippets.

@josh-marasigan
Last active December 15, 2017 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josh-marasigan/252fb64c8c87893bf77eff197b7cff9b to your computer and use it in GitHub Desktop.
Save josh-marasigan/252fb64c8c87893bf77eff197b7cff9b to your computer and use it in GitHub Desktop.
class Mom {
var _son: Son
init(son: Son) {
self._son = son
}
func tellJoshWhatToDo() {
self._son.washDishes()
self._son.cleanRoom()
self._son.walkNala()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment