Spotlight archive

Guess the language.

Three lines, six guesses.

MODESpotlight0/6
Spotlight · ?.??
1public record Money(BigDecimal amount, String currency) {
2 public Money add(Money other) { return new Money(amount.add(other.amount), currency); }
3}
Keep going