mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 20:20:46 +00:00
10 lines
157 B
Java
10 lines
157 B
Java
//version 7:
|
|
import java.io.PrintWriter;
|
|
public class TryWithResources {
|
|
{
|
|
try (PrintWriter pw = new PrintWriter(System.out)) {
|
|
pw.println();
|
|
}
|
|
}
|
|
}
|