blob: 952b92556a219986987d0e646c467fb5ed856f7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
pragma solidity >=0.6.0;
contract Counter {
uint256 x;
constructor() public {
x = 42;
}
function add(uint256 y) public returns (uint256) {
x = x + y;
return x;
}
}
|