Articles → BLOCKCHAIN → Remix Editor
Remix Editor
Purpose
Open Remix
How To Create Your First Contract?
// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
contract hello {
string public ourString = "Hello World";
}
Compile The Code
Deploy The Contract
Output
Deploy And Run Transactions Window