Skip to content

test_mage#1

Open
cocopops78 wants to merge 2 commits intoRabbitFinanceProtocol:mainfrom
cocopops78:main
Open

test_mage#1
cocopops78 wants to merge 2 commits intoRabbitFinanceProtocol:mainfrom
cocopops78:main

Conversation

@cocopops78
Copy link
Copy Markdown

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Counter {
uint256 private count;

function increment() public {
    count++;
}

function getCount() public view returns (uint256) {
    return count;
}

}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Counter {
    uint256 private count;

    function increment() public {
        count++;
    }

    function getCount() public view returns (uint256) {
        return count;
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant