Created
January 7, 2016 14:26
-
-
Save pyricau/26bc7fb485a02ec1f773 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
import java.util.concurrent.Callable; | |
public enum Lol implements Callable<CharSequence> { | |
ಠ_ಠ { | |
@Override public String call() { | |
return "Foo"; | |
} | |
}; | |
@Override public CharSequence call() { | |
return "Bar"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment