Untitled
Anonymous
plain_text
03/11/2025 7:48 PM
400 B
19
Indexable
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract HelloWorld {
string public message;
constructor(string memory _message) {
message = _message;
}
function updateMessage(string memory _newMessage) public {
message = _newMessage;
}
}Editor is loading...
Leave a Comment