mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
175 B
Plaintext
10 lines
175 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)
|
|
}
|
|
// ----
|