【Hello World & First Contract】
pragma solidity ^0.8.11;
contract HelloWorld {
string public helloworld = "Hello World!";
}pragma solidity ^0.8.11;
contract FirstContract {
uint public myVar;
function get() public view returns (uint) {
return myVar;
}
function set(uint x) public {
myVar = x;
}
}Last updated