카테고리 없음

Solidity Remix

https.. 2026. 1. 7. 17:49
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.30;

contract HelloWorld{

	function Helloworld() public pure returns(string memory){
    	return "HelloWorld";
    }

}