ligo/contracts/heap-instance.ligo

7 lines
173 B
Plaintext
Raw Normal View History

2019-05-13 00:56:22 +04:00
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"