Solidity - First Application
Here is a simple contract that you can get, increment and decrement the count store in this contract. 이 계약에서 카운트 저장값을 가져오고, 증가하고, 감소시킬 수 있는 간단한 계약이 있습니다. 다음 코드를 통해 살펴봅시다. // SPDX-License-Identifier: MIT // Solidity 버전 선언 pragma solidity ^0.8.13; contract Counter { unsigned int면서 public한 변수로 count 선언 uint public count; // Function to get the current count function get() public view returns (uint)..
Programming Language/Solidity
2022. 12. 19. 21:43