Advertisement
Guest User

swift2

a guest
Nov 23rd, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Test {
  2. let value: Int
  3. init (value: Int) {
  4. outside (value: value)
  5. }
  6. static func outside (value: Int) {
  7. self.value = value
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement