Open binkley opened 10 years ago
Contrast:
Money aDollar = Money.parse("USD1"); BigDecimal eight = new BigDecimal("8"); Money m = aDollar / eight; m.getAmount();
With non-compiling:
(aDollar / eight).getAmount();
Please provide Money class.
Contrast:
With non-compiling: