Remix IDE is a convenient tool for building and testing your solidity smart contracts online. This short tutorial will explain how we can build and deploy our smart contract from Remix. // SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; contract Destructor { uint256 public num; constructor(uint256 _num){ num = _num; } function doWork() external { selfdestruct(payable(0)); } functi