ligo/contracts/heap-instance.ligo
2019-05-12 20:57:30 +00: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"