package num import "fmt" type Signed int func (s Signed) String() string { if s == 0 { return "" } return fmt.Sprintf("%+d", int(s)) }