mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
7 lines
194 B
Plaintext
7 lines
194 B
Plaintext
class Foo {
|
|
Foo(String firstName, String lastName, int age, boolean married) {}
|
|
|
|
public static void main(String[] args) {
|
|
Foo joe = <spot>new Foo("Joe", "Smith", 42, false)</spot>;
|
|
}
|
|
} |