mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
162 B
Plaintext
9 lines
162 B
Plaintext
|
{
|
||
|
let x := calldataload(0)
|
||
|
for { } lt(x, 10) { x := add(x, 1) } {
|
||
|
if eq(x, 2) { break }
|
||
|
if eq(x, 4) { continue }
|
||
|
}
|
||
|
sstore(0, x)
|
||
|
}
|