Guest User

Untitled

a guest
Jan 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public struct Bar {
  2. public struct Foo: CustomStringConvertible {
  3. public var description: String { return "Foo!" }
  4. public init() { }
  5. }
  6. public static func food() -> Foo { return Foo() }
  7. }
Add Comment
Please, Sign In to add comment