Skip to content

Instantly share code, notes, and snippets.

View RanolP's full-sized avatar
🤓
Otaku save the world

RanolP RanolP

🤓
Otaku save the world
View GitHub Profile
@RanolP
RanolP / Test.java
Created January 9, 2018 09:43
for B4TT3RY
public class Test {
abstract class Text {
protected String value;
public Text(String value) {
this.value = value;
}
public abstract String get();
}