Q1
Single choice
What is the output?
record R(int x) implements AutoCloseable {
public void close() { System.out.print("close "); }
}
try (R r = new R(1)) {
System.out.print("run ");
}
finally {
System.out.print("finally ");
}