Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created June 3, 2023 22:58
Show Gist options
  • Save TehilaFavourite/9da0dda497e06453da9fda8360d86567 to your computer and use it in GitHub Desktop.
Save TehilaFavourite/9da0dda497e06453da9fda8360d86567 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0 <0.9.0;
abstract contract Performer {
function rules() public pure virtual returns (bytes32);
}
contract Singer is Performer {
function rules() public pure override returns (bytes32) {
return "sing";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment