mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
3c4273a06c
- Currently many files have .sol extension because originally the test script required it but this has changed some time ago.
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)
|
|
}
|