Skip to content

Instantly share code, notes, and snippets.

@mdk-aza
Last active August 29, 2015 13:57
Show Gist options
  • Save mdk-aza/9650052 to your computer and use it in GitHub Desktop.
Save mdk-aza/9650052 to your computer and use it in GitHub Desktop.
public class sample {
public static void main(String[] args){
SampleFunction function = (name) ->System.out.println("Hello, " + name);
function.say("テスト 太郎");
}
@FunctionalInterface
private interface SampleFunction {
public void say(String name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment