sophia/test/contracts/contract_polymorphism.aes
2022-05-25 19:38:10 +04:00

6 lines
131 B
Plaintext

contract interface Strokable =
entrypoint stroke : () => string
contract Cat : Strokable =
entrypoint stroke() = "Cat stroke"