SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract Todos { struct Todo { string text; bool completed; } // An array of 'Todo' structs Todo[] ...
確定! 回上一頁