Solidity Editor
A simple online editor for Solidity code.
untitled.sol — Solidity Editor
1
// SPDX-License-Identifier: MIT2
pragma solidity ^0.8.24;7
// Function to get the current count8
function get() public view returns (uint256) {12
// Function to increment count by 113
function inc() public {17
// Function to decrement count by 118
function dec() public {19
// This function will fail if count = 0
Solidity Editor