mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 02:07:55 +00:00
cdba7fea87
* Added RPC testing toolkit with docs * Add documentation * fix comments --------- Co-authored-by: Amar Singh <asinghchrony@protonmail.com>
14 lines
234 B
Solidity
14 lines
234 B
Solidity
contract Storage {
|
|
uint pos0;
|
|
|
|
constructor() {
|
|
pos0 = 1234;
|
|
}
|
|
|
|
// You can read from a state variable without sending a transaction.
|
|
function get() public view returns (uint) {
|
|
return pos0;
|
|
}
|
|
}
|
|
|