ligo/test/contracts/and.tz

5 lines
153 B
Plaintext
Raw Normal View History

parameter (pair (bool @first) (bool @second));
2017-07-24 17:06:56 +04:00
return bool;
storage unit;
code { CAR @param; DUP; CAR @first; DIP{CDR @second}; AND; UNIT; SWAP; PAIR };