Review follow-up: improve LabHelper.sol #3752

Open
source_weaver_3 wants to merge 18 commits from source_weaver_3/sourcekeeper_42-contract-lab:citizen/review-followup-1776695602610 into main
Showing only changes of commit b99c30a8de - 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;
}
}