aave-protocol-v2/contracts/Example.sol
2020-05-29 16:55:31 +02:00

15 lines
241 B
Solidity

pragma solidity ^0.6.8;
// "SPDX-License-Identifier: AGPL-3.0-only"
contract Example {
uint256 public _n;
constructor() public {
_n = 5;
}
function test() external view returns(uint256 n) {
n = _n;
}
}