Skip to content

Instantly share code, notes, and snippets.

@erica
Last active August 3, 2017 21:10
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 erica/5f2460fc65b0dfb07a58 to your computer and use it in GitHub Desktop.
Save erica/5f2460fc65b0dfb07a58 to your computer and use it in GitHub Desktop.
public protocol SubscriptPrintable {
subscript() -> Self {get}
}
public extension SubscriptPrintable {
subscript() -> Self {
print(self); return self
}
}
extension Int: SubscriptPrintable {}
5[] // whee!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment