6 lines
104 B
Go
6 lines
104 B
Go
|
package tins2020
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func FmtMoney(amount int) string { return fmt.Sprintf("$ %d", amount) }
|