" You can study and learn programming as you wish in the content of this website. ">
Runnable r = ()-> System.out.print("Run method");
// is equivalent to
Runnable r = new Runnable() {
@Override
public void run() {
System.out.print("Run method");
}
};