https://gitlab.com/tezos/tezos
Raw File
Tip revision: 946045f0fd19b10f0419990eee290306edc15077 authored by Nic Volanschi on 28 April 2023, 14:15:13 UTC
doc: explain the default role in the doc guidelines
Tip revision: 946045f
ticket_split.tz
parameter (ticket nat) ;
storage unit;
code
  { CAR ;
    PUSH (pair nat nat) (Pair 1 2) ; SWAP;
    SPLIT_TICKET; ASSERT_SOME; UNPAIR;
    READ_TICKET; CDDR; PUSH nat 1; ASSERT_CMPEQ;
    DROP;
    READ_TICKET; CDDR; PUSH nat 2; ASSERT_CMPEQ;
    DROP;
    UNIT ; NIL operation ; PAIR } ;
back to top