contract Reinit_Poc { uint public constant a = 999; function a_plus_one() public view returns(uint){ return a+1; } function helloworld() public view returns(string memory){ return "hello world"; } function dead() public{ selfdestruct(msg.sender); } }