label.go

1package bug
2
3type Label string
4
5func (l Label) String() string {
6	return string(l)
7}