mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
222 B
Plaintext
14 lines
222 B
Plaintext
|
{
|
||
|
let a := mload(3)
|
||
|
let b := mload(6)
|
||
|
let x := mul(add(b, a), mload(2))
|
||
|
sstore(x, 3)
|
||
|
}
|
||
|
// ----
|
||
|
// expressionJoiner
|
||
|
// {
|
||
|
// let a := mload(3)
|
||
|
// let b := mload(6)
|
||
|
// sstore(mul(add(b, a), mload(2)), 3)
|
||
|
// }
|