Files
2025-02-05 04:43:28 +00:00

14 lines
296 B
Plaintext

class Foo {
private String firstName;
<spot>private</spot> Foo(String firstName) {
this.firstName = firstName;
}
static Foo createFoo(String firstName) {
return new Foo(firstName);
}
public static void main(String[] args) {
Foo joe = <spot>createFoo("Joe")</spot>;
}
}