https://gitlab.com/tezos/tezos
Raw File
Tip revision: 53d736ad485579025e57425c8e09b03585505fc8 authored by Arvid Jakobsson on 29 June 2023, 06:45:02 UTC
CI: Boost CPU
Tip revision: 53d736a
no_default_target.tz
storage (pair string nat) ;
parameter
  (or unit (or %data string nat)) ;
code { UNPAIR ;
       IF_LEFT
         { DROP ; NIL operation ; PAIR }
         { IF_LEFT
             { DIP { UNPAIR ; DROP } }
             { DUG 1; UNPAIR ; DIP { DROP } } ;
           PAIR ; NIL operation ; PAIR }
     }
back to top