https://gitlab.com/tezos/tezos
Raw File
Tip revision: 631a98d972d832382af739ef0d622ce0157f0ac8 authored by Thomas Letan on 04 March 2024, 09:18:27 UTC
fixup: rebase command
Tip revision: 631a98d
loop_01.tzt
code { LOOP { IF_CONS { SWAP ; DIP { CONS } ; PUSH bool True } { NIL string ; PUSH bool False }  } } ;
input { Stack_elt bool True ; Stack_elt (list string) { "a" ; "b" ; "c" } ; Stack_elt (list string) {} } ;
output { Stack_elt (list string) { } ; Stack_elt (list string) { "c" ; "b" ; "a" } }
back to top