mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
167 B
Plaintext
9 lines
167 B
Plaintext
|
{
|
||
|
datacopy(0, 1, 2)
|
||
|
|
||
|
// datacopy also accepts pretty much anything which can be turned into a number
|
||
|
let x := 0
|
||
|
let s := ""
|
||
|
datacopy(x, "11", s)
|
||
|
}
|