Untitled

 avatar
unknown
plain_text
14 days ago
300 B
4
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