ligo/test/contracts/concat_hello.tz

5 lines
150 B
Plaintext
Raw Normal View History

2017-07-24 17:06:56 +04:00
parameter (list string);
return (list string);
storage unit;
code {CADR; LAMBDA string string {PUSH string "Hello "; CONCAT}; MAP; UNIT; SWAP; PAIR};