hfgj #5700
hfgj
#5700
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
'''solidity
pragma solidity ^0.8.8;
//uint,int,bool
contract SimpleStorage{
uint public fun;
function store(uint256 mohan) public {
fun=mohan;
}
function retrieve() public view returns(uint256){
return fun;
}
}
//0xd9145CCE52D386f254917e481eB44e9943F39138
'''
Beta Was this translation helpful? Give feedback.
All reactions