mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
329 B
Plaintext
18 lines
329 B
Plaintext
{
|
|
let random := 42
|
|
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
|
|
a := add(a, 1)
|
|
}
|
|
}
|
|
// ----
|
|
// step: forLoopConditionIntoBody
|
|
//
|
|
// {
|
|
// let random := 42
|
|
// for { let a := 1 } true { a := add(a, 1) }
|
|
// {
|
|
// if iszero(iszero(eq(a, 10))) { break }
|
|
// a := add(a, 1)
|
|
// }
|
|
// }
|