如何在 Solidity Remix 中添加对 HelloWorld 的响应?

How to add response to HelloWorld in Solidity Remix?

我想添加对 this Hello World example 的回复。

HelloWorld.sol
// 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!";
    string public respond = "Good morning, starshine!"; // trying to add this line
}

当我 运行 我试图添加的行之前的 contract in Remix 时,我看到这个...

我希望在添加行后看到的是另一个名为 respond 的按钮,当我按下它时,我希望它下面显示:

string: Good morning, starshine!

但是,与 运行 没有我添加的行相比,我没有看到任何变化。

如何实现预期的行为?

我发现你的代码没有错误 您必须通过单击橙色部署按钮再次重新部署合同