https://gitlab.com/tezos/tezos
Raw File
Tip revision: 1f0f246bbc5c7364cde801ba7231245ed0102982 authored by Danny Willems on 09 April 2023, 11:12:51 UTC
Bls12_381_hash: add PHT
Tip revision: 1f0f246
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