https://gitlab.com/tezos/tezos
Raw File
Tip revision: 676e8dd5c02ce4156f6e9d3d00a34423f86b5bee authored by Gauthier SEBILLE on 03 April 2024, 09:41:51 UTC
Tezt: update expected of views.ml
Tip revision: 676e8dd
apply_00.tzt
code APPLY;
input
  {
    Stack_elt string "Hi" ;
    Stack_elt (lambda (pair string int) nat) { DROP ; PUSH nat 1 } ;
  } ;
output
  {
    Stack_elt (lambda int nat) { PUSH string "Hi" ; PAIR ; { DROP ; PUSH nat 1 } }
  }
back to top