Thu Mar 30 2023 11:38:07 GMT+0000 (Coordinated Universal Time)
Saved by @RareSkills
contract Parent { function theMeaningOfLife() public pure virtual returns (uint256) { return 42; } } contract Child is Parent { function theMeaningOfLife() public pure override returns (uint256) { return 43; } }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments