sophia/test/contracts/test.aes
2021-05-11 14:24:06 +02:00

9 lines
264 B
Plaintext

// If you need a quick compiler test — this file is for your playground
contract interface Remote =
entrypoint init : int => void
entrypoint f : int => int
contract Test =
entrypoint kek(r : Remote) =
Chain.clone(ref=r, 123)
Chain.bytecode_hash(r)