tally.gno

0.13 Kb ยท 11 lines
 1package evaluation
 2
 3import "gno.land/p/nt/avl"
 4
 5type TallyResult struct {
 6	results avl.Tree
 7}
 8
 9type Tally interface {
10	Tally()
11}