mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-03 22:13:56 +00:00
14 lines
280 B
Java
14 lines
280 B
Java
@lombok.Data
|
|
public class HelloWorld {
|
|
private final int answer;
|
|
|
|
public static void main(String... args) {
|
|
System.out.println(new HelloWorld(42).getAnswer());
|
|
}
|
|
|
|
@FunctionalInterface
|
|
interface Foo {
|
|
String name();
|
|
}
|
|
}
|