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-literals.tz
# This pushes a list of combs to test the effect of the normalize script command
parameter unit;
storage unit;
code {
       PUSH
         (list (pair nat nat nat nat))
         {Pair 0 3 6 9; Pair 1 (Pair 4 (Pair 7 10)); {2; 5; 8; 11}};
       DROP 2; UNIT; NIL operation; PAIR
     }
back to top