Created
June 11, 2014 15:13
-
-
Save TheEmpty/9d30ec488acd0471746f to your computer and use it in GitHub Desktop.
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 | |
| object ಠ_ಠ { | |
| // ಠ_ಠ really "Replace user" | |
| def really(str : String) = { | |
| System.err.println(str) | |
| } | |
| // ಠ_ಠ ¬_¬ "Can't provide --log and --no-log" | |
| def ¬_¬(str : String) = { | |
| really(str) | |
| } | |
| // ಠ_ಠ damnit "Timedout" | |
| def damnit(str : String) = { | |
| throw new Exception(str) | |
| } | |
| // ಠ_ಠ ╯°□°╯ "External service returned 503" | |
| def ╯°□°╯(str : String) = { | |
| damnit(str) | |
| } | |
| } | |
| def ಥ╭╮ಥ { | |
| throw new Exception("Dev just gave up") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment