1: Introduction
Introduction to Solidity
Lesson 1: Introduction to Solidity
pragma solidity ^0.8.0;
contract MyContract {
string public message;
function setMessage(string memory newMessage) public {
message = newMessage;
}
function getMessage() public view returns (string memory) {
return message;
}
}Let's break down the code:
Last updated