destruct.sol 203 B

123456789
  1. contract destruct {
  2. function hello() public pure returns (string) {
  3. return "Hello";
  4. }
  5. function selfterminate(address payable deposit) public {
  6. selfdestruct(deposit);
  7. }
  8. }