Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created May 23, 2023 22:11
Show Gist options
  • Save TehilaFavourite/39a32ce73b7be685ed1bf64245f48df9 to your computer and use it in GitHub Desktop.
Save TehilaFavourite/39a32ce73b7be685ed1bf64245f48df9 to your computer and use it in GitHub Desktop.
pragma solidity ^0.8.0;
contract House {
// Base contract defining common features of a house
// ...
// House-specific functions and variables
// ...
}
contract SmartHouse is House {
// Specialized contract inheriting from House
// ...
// SmartHouse-specific functions and variables
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment