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
comb-set.tz
# This tests UPDATE on combs. See also comb-set-2.tz for tests of
# UPDATE that also change the type of fields.
parameter unit;
storage (pair nat nat nat unit);
code { CDR ;
       PUSH nat 2 ; UPDATE 1 ;
       PUSH nat 12 ; UPDATE 3 ;
       PUSH nat 8 ; UPDATE 5 ;
       UNIT ; UPDATE 6 ;
       NIL operation ; PAIR ; }
back to top