Created
October 11, 2016 15:14
-
-
Save joescii/dbfaa898f5704afb86f7c95cc70dadef to your computer and use it in GitHub Desktop.
Git r done
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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