6 lines
88 B
Java
6 lines
88 B
Java
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println("Run");
|
|
}
|
|
}; |