mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
180 B
Solidity
17 lines
180 B
Solidity
|
contract A {
|
||
|
uint8 immutable a;
|
||
|
uint8 x;
|
||
|
|
||
|
constructor() {
|
||
|
a = 3;
|
||
|
x = a;
|
||
|
}
|
||
|
|
||
|
function readX() public view returns (uint8) {
|
||
|
return x;
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// ----
|
||
|
// readX() -> 3
|