Solidity 教程: 基础知识
1. 第一个Solidity 程序: Hello World
// SPDX-License-Identifier: MIT
// compiler version must be greater than or equal to 0.8.13 and less than 0.9.0
pragma solidity ^0.8.13;
contract HelloWorld {
string public greet = "Hello World!";
}
上面的一段Solidity...
eth.antcave.club26 min read