Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class PondokIT{
- private String message="Pondok Programmer";
- public void printMessage() {
- System.out.println(message);
- }
- public String getMesaage() {
- return message;
- }
- }
- class clasandobject {
- public static void main(String[] args) {
- PondokIT pondokit = new PondokIT();
- pondokit.printMessage();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment