Skip to content

Instantly share code, notes, and snippets.

@pawelpluta
Last active October 8, 2020 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pawelpluta/4cba62250c632e725084faa545b526f7 to your computer and use it in GitHub Desktop.
Save pawelpluta/4cba62250c632e725084faa545b526f7 to your computer and use it in GitHub Desktop.
Article: The OOP has been explained wrongly to you - solution
class Programme {
private final Integer temperature;
private final Integer spinSpeed;
Programme(Integer temperature, Integer spinSpeed) {
this.temperature = temperature;
this.spinSpeed = spinSpeed;
}
Integer getTemperature() {
return temperature;
}
Integer getSpinSpeed() {
return spinSpeed;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment