AbsolutelyNothing.sol 122 Bytes
pragma solidity ^0.8.9;

contract AbsolutelyNothing {
    function doAbsolutelyNothing() public {
        return;
    }
}