Skip to content

Commit 090f983

Browse files
committed
SimpleStorage Contract
1 parent 01bd428 commit 090f983

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Contracts/SimpleStorage.sol

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity ^0.8.19;
3+
4+
contract SimpleStorage {
5+
uint256 public data;
6+
7+
function setData(uint256 _data) external {
8+
data = _data;
9+
}
10+
}

0 commit comments

Comments
 (0)