add: money type to interfaces

This commit is contained in:
Inanc Gumus
2019-08-21 23:53:47 +03:00
parent c282da3c6d
commit ce5a32ecbe
21 changed files with 113 additions and 59 deletions

View File

@ -11,9 +11,9 @@ import "fmt"
type puzzle struct {
title string
price float64
price money
}
func (p puzzle) print() {
fmt.Printf("%-15s: $%.2f \n", p.title, p.price)
fmt.Printf("%-15s: %s\n", p.title, p.price.string())
}