Solidity + REMIX 시작
// SPDX-License-Identifier: MIT; : 솔리디티 라이센스pragma solidity ^0.8.19;: 솔리디티의 컴파일 버전contract 컨트렉트명: 스마트 컨트렉트 명시public 함수에 출력할 내용 지정해주기contract Hello{ string public hi = "Hello solidity"; }- Remix Deploy 배포를 하고 hi 함수 실행을 하면 string 타입의 Hello solidity 값을 확인할 수 있다.