Files
example-code-2e/11-pythonic-obj/private/Confidential.java
Luciano Ramalho 70132a37c2 ch11: sample code
2020-06-09 01:16:38 -03:00

9 lines
146 B
Java

public class Confidential {
private String secret = "";
public Confidential(String text) {
secret = text.toUpperCase();
}
}