Skip to content

Instantly share code, notes, and snippets.

@alexroan
Created March 24, 2020 15:30
Show Gist options
  • Save alexroan/4afcbe0d353d4dba2516c39421305cbf to your computer and use it in GitHub Desktop.
Save alexroan/4afcbe0d353d4dba2516c39421305cbf to your computer and use it in GitHub Desktop.
example/solidity-inheritance
pragma solidity >=0.5.0;
contract Vehicle {
}
contract Car is Vehicle {
}
contract Van is Vehicle {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment