我刚开始编码,当我输入 Pragma solidity >=0.6.0 <0.9.0;它给了我错误。我不知道该怎么做,我的问题在哪里?
I have just started coding and when I type Pragma solidity >=0.6.0 <0.9.0; it gives me error. I couldn't know how to do it right, where's my problem?
我刚开始学习编码,打字时我不知道什么
Pragma solidity >=0.6.0 <0.9.0;它给了我错误。
我不知道该怎么做:(
在此先感谢您:)
哈拉
Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing "SPDX-License-Identifier: " to each source file. Use "SPDX-License-Identifier: UNLICENSED" for non-open-source code. Please see spdx.org for more information.
这是一个与 pragma
语句无关的警告。
编译器建议您声明您希望其他人使用您的代码的许可证。
它应该放在第一行,在 pragma
语句之前。
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.0 <0.9.0;
我刚开始学习编码,打字时我不知道什么 Pragma solidity >=0.6.0 <0.9.0;它给了我错误。 我不知道该怎么做:(
在此先感谢您:) 哈拉
Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing "SPDX-License-Identifier: " to each source file. Use "SPDX-License-Identifier: UNLICENSED" for non-open-source code. Please see spdx.org for more information.
这是一个与 pragma
语句无关的警告。
编译器建议您声明您希望其他人使用您的代码的许可证。
它应该放在第一行,在 pragma
语句之前。
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.0 <0.9.0;