I want my Java code to print itself. For example:
System.out.println("My code is:" + SomehowStringify((int x, int y) -> x + y))
My code is: (int x, int y) -> x + y)
Is this possible in any way?
I want my Java code to print itself. For example:
System.out.println("My code is:" + SomehowStringify((int x, int y) -> x + y))
My code is: (int x, int y) -> x + y)
Is this possible in any way?