add missing newline

This commit is contained in:
Kistaro Windrider 2023-11-18 16:50:59 -08:00
parent 67432448cf
commit 0a7dd54597
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -40,4 +40,4 @@ func main() {
fmt.Printf("The auction winner paid ¤%f, %s.\n", price, valueStr) fmt.Printf("The auction winner paid ¤%f, %s.\n", price, valueStr)
fmt.Printf("The item was worth ¤%f to them.\n", bidder.Value) fmt.Printf("The item was worth ¤%f to them.\n", bidder.Value)
fmt.Printf("They would have paid up to ¤%f for it.\n", bidder.BidCeiling()) fmt.Printf("They would have paid up to ¤%f for it.\n", bidder.BidCeiling())
} }