Skip to content

Instantly share code, notes, and snippets.

View Redfire75369's full-sized avatar

Redfire Redfire75369

View GitHub Profile
public final class Print {
private str = new String();
public Print(String string) {
this.str = string;
}
public void print() {
system.out.println(str);
}
}