ligo/src/test/contracts/heap-instance.ligo

7 lines
157 B
Plaintext
Raw Normal View History

type heap_elt is int * string
2019-05-12 20:56:22 +00:00
function heap_elt_lt (const x : heap_elt;
const y : heap_elt) : bool is x.0 < y.0
2019-05-12 20:56:22 +00:00
#include "heap.ligo"