Using Remix
What is Remix?
Getting Started with Remix
// SPDX-License-Identifier: MIT
// Compiler version must be greater than or equal to 0.8.17 and less than 0.9.0
pragma solidity ^0.8.17;
contract HelloWorld {
string public greet = "Hello World!";
}Deploying Your Smart Contract
Last updated