Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Module: SpecialAsString
  2.  
  3. public var special: String {
  4.  
  5. return "A"
  6. }
  7.  
  8.  
  9. // Module: SpecialAsURL
  10.  
  11. public var special: URL {
  12.  
  13. return URL(fileURLWithPath: "A")
  14. }
  15.  
  16.  
  17. // Application
  18.  
  19. import SpecialAsURL
  20. import SpecialAsString
  21.  
  22. print(special as String)
  23. print(special as URL)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement