Solidity - Primitive Data Types
Here we introduce you to some primitive data types available in Solidity. 여기서는 Solidity에서 사용할 수 있는 몇 가지 원시 데이터 유형을 소개합니다. boolean (true / false 타입의 유형) uint (unsigned int 타입의 유형) int (정수) address (주소) // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract Primitives { bool public boo = true; /* uint stands for unsigned integer, meaning non negative integers different sizes are availab..
Programming Language/Solidity
2022. 12. 19. 21:47