mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
15 lines
241 B
Solidity
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;
|
|
}
|
|
} |