aave-protocol-v2/contracts/Example.sol

15 lines
241 B
Solidity
Raw Normal View History

2020-05-29 14:55:31 +00:00
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;
}
}