ligo/src/test/contracts/bytes_arithmetic.ligo

6 lines
206 B
Plaintext
Raw Normal View History

function concat_op (const s : bytes) : bytes is bytes_concat (s, 0x7070)
2019-09-07 18:42:59 +02:00
function slice_op (const s : bytes) : bytes is bytes_slice (1n, 2n, s)
2019-09-07 18:42:59 +02:00
function hasherman (const s : bytes) : bytes is sha_256 (s)