common.go 182 B

1234567891011
  1. package common
  2. import "fmt"
  3. type Money int64
  4. func (m Money) String() string {
  5. rubles := int64(m) / 100
  6. kopeks := int64(m) % 100
  7. return fmt.Sprintf("%d.%02d", rubles, kopeks)
  8. }