Abdulsalam Aljamal
Paul Woitaschek
fun LocalDate.atEndOfMonth(): LocalDate { val atNextMonth = plus(DatePeriod(months = 1)) return LocalDate(atNextMonth.year, atNextMonth.month, 1) .minus(DatePeriod(days = 1)) }
A modern programming language that makes developers happier.