chapter25-code-2

PHOTO EMBED

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;
	}
}
content_copyCOPY