Solidity - Hello World
* 개발자들이 언어를 배울 때 제일 처음 하는 일 "Hello World"는 solidity에서 어떻게 표현할까?? 예시는 다음 코드에서 확인 할 수 있다. // SPDX-License-Identifier: MIT >> 라이선스 관련 선언 // compiler version must be greater than or equal to 0.8.13 and less than 0.9.0 // pragma specifies the compiler version of Solidity. // (pragma는 Solidity의 컴파일러 버전을 지정합니다.) pragma solidity ^0.8.13; contract HelloWorld { //문자열 public greet 변수에 "Hello World" 선언 stri..
Programming Language/Solidity
2022. 12. 19. 21:38