Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Last active December 2, 2022 22:21
Show Gist options
  • Save 5AbhishekSaxena/65396ea4d99c445a4ec7e4b94d2553d7 to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/65396ea4d99c445a4ec7e4b94d2553d7 to your computer and use it in GitHub Desktop.
fun main() {
val wasteManagementService = WasteManagementService()
var waste: Waste
waste = OrganicWaste()
wasteManagementService.processWaste(waste) // Output: Processing Organic Waste
waste = PlasticWaste()
wasteManagementService.processWaste(waste) // Output: Processing Plastic Waste
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment