Skip to content

Instantly share code, notes, and snippets.

@joescii
Created October 11, 2016 15:14
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 joescii/dbfaa898f5704afb86f7c95cc70dadef to your computer and use it in GitHub Desktop.
Save joescii/dbfaa898f5704afb86f7c95cc70dadef to your computer and use it in GitHub Desktop.
Git r done
scala> val done = "GIT R DONE!!!"
done: String = GIT R DONE!!!
scala> object git {
| def r(s: String): Unit = println(s)
| }
defined object git
scala> git r done
GIT R DONE!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment