ligo/test/contracts/heap-instance.ligo
2019-09-09 11:47:42 +02:00

7 lines
173 B
Plaintext

type heap_element is int * string
function heap_element_lt(const x : heap_element ; const y : heap_element) : bool is
block { skip } with x.0 < y.0
#include "heap.ligo"