Solidity-Learning

Solidity 学习笔记

View the Project on GitHub XdpCs/Solidity-Learning

001-你好,世界

背景

通过学习Solidity,然后输出文章检验自己的学习成果Github仓库

欢迎大家关注我的X

基础知识

任何一个程序教学,开头都会教你如何写Hello World,我也不例外

例子

该例子是在链上存储"Hello World!"的字符串

例子

arb 合约地址

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

contract HelloWorld {
    string public greet = "Hello World!";
}

程序解析

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract HelloWorld
string public greet = "Hello World!";

链接