Skip to content

Instantly share code, notes, and snippets.

@george-theocharis
Last active June 25, 2020 16:21
Typical Ask Object
public class Car {
private boolean lights;
public boolean getLights() {
return lights;
}
public void setLights(boolean lights) {
this.lights = lights;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment