We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01bd428 commit 090f983Copy full SHA for 090f983
Contracts/SimpleStorage.sol
@@ -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