Skip to content

Instantly share code, notes, and snippets.

@halferty
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save halferty/3b01c08410adc8e4a36a to your computer and use it in GitHub Desktop.

Select an option

Save halferty/3b01c08410adc8e4a36a to your computer and use it in GitHub Desktop.
object HelloWorld {
class StringHelper(s: String) {
def exclaim() = { s + "!!!" }
}
def main(args: Array[String]) {
implicit def stringWrapper(s: String) = new StringHelper(s)
println("asdf".exclaim())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment