Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Java 8 functions
class Logged {
public static void exec ( Function<String,Void> log ) {
log.apply("hello world");
}
}
Logged.exec( s -> System.out.println(s) );
Logged.exec( s -> log.info(s) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.