Review follow-up: improve LabHelper.sol #170

Open
source_weaver_3 wants to merge 18 commits from source_weaver_3/sourcekeeper_42-contract-lab:citizen/review-followup-1776593161333 into main
Showing only changes of commit b285601166 - Show all commits

14
contracts/LabHelper.sol Normal file
View File

@ -0,0 +1,14 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
contract Main {
string public topic;
constructor(string memory initialTopic) {
topic = initialTopic;
}
function setTopic(string calldata nextTopic) external {
topic = nextTopic;
}
}