Guest User

nullpo3

a guest
Jan 8th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package mainPackage;
  2.  
  3. public class Test85 {
  4. public static void main(String[] args) {
  5.  
  6. method.printAnswer(10, System.out);
  7. }
  8.  
  9. public static SampleMethod method = (x,out) -> { out.println(x*x);};
  10. }
  11.  
  12. interface SampleMethod{
  13. public abstract void printAnswer(int p,java.io.PrintStream out);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment