Skip to content

Instantly share code, notes, and snippets.

@carlosmaniero
Created March 16, 2017 02:24
Show Gist options
  • Save carlosmaniero/f65a9b35098c8201addba0236854f7f9 to your computer and use it in GitHub Desktop.
Save carlosmaniero/f65a9b35098c8201addba0236854f7f9 to your computer and use it in GitHub Desktop.
public class LambdaExpression {
public static void main(String args[]) {
TouchMe touchMe = new TouchMe(times -> System.out.println(times));
touchMe.touch(); // 1
touchMe.touch(); // 2
touchMe.touch(); // 3
touchMe.touch(); // 4
touchMe.touch(); // 5
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment