Skip to content

Instantly share code, notes, and snippets.

@duy-alex-genetica
duy-alex-genetica / contracts...MyContract.sol
Created February 13, 2024 17:26
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.22+commit.4fc1097e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
contract MyContract {
string public ourString = "Hello World";
function updateOurString (string memory _updateString) public {
ourString = _updateString;
}
}