상세 컨텐츠

본문 제목

Solidity - Hello World

Programming Language/Solidity

by Yongari 2022. 12. 19. 21:38

본문

* 개발자들이 언어를 배울 때 제일 처음 하는 일 

"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" 선언
    string public greet = "Hello World!";
}

 

Remix 링크 : hello.sol

'Programming Language > Solidity' 카테고리의 다른 글

Solidity - Immutable  (0) 2022.12.21
Solidity - Constants  (0) 2022.12.21
Solidity - Variables  (0) 2022.12.21
Solidity - Primitive Data Types  (0) 2022.12.19
Solidity - First Application  (0) 2022.12.19

관련글 더보기