Question 1
What is the result?
class Test {
public static void main(String[] args) {
Thread t = new Thread(() -> System.out.print("run"));
t.start();
}
}
What is the result?
class Test {
public static void main(String[] args) {
Thread t = new Thread(() -> System.out.print("run"));
t.start();
}
}