FormatPrice returns a display string like "$1.38/hr".
(hourlyPrice float64)
| 43 | |
| 44 | // FormatPrice returns a display string like "$1.38/hr". |
| 45 | func FormatPrice(hourlyPrice float64) string { |
| 46 | return fmt.Sprintf("$%.2f/hr", hourlyPrice) |
| 47 | } |
no outgoing calls