ligo/src/test/contracts/string_arithmetic.ligo

6 lines
155 B
Plaintext
Raw Normal View History

function concat_op (const s : string) : string is
2020-02-27 17:51:29 +01:00
string_concat (s, "toto")
function slice_op (const s : string) : string is
2020-02-27 17:51:29 +01:00
string_slice (1n, 2n, s)