Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. //: Playground - noun: a place where people can play
  2.  
  3. import UIKit
  4.  
  5. var str = "Hello, playground"
  6.  
  7. protocol Hoge{
  8.  
  9. }
  10.  
  11. class HogeHoge: Hoge{
  12.  
  13. }
  14.  
  15. var testHoge: HogeHoge = HogeHoge()
  16.  
  17. if testHoge is Hoge{
  18. print("true")
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement