Hi guys, i have this code ```val formatter = DateT...
# kotlin-native
l
Hi guys, i have this code
Copy code
val formatter = DateTimeFormatter
        .ofLocalizedDateTime(FormatStyle.LONG, FormatStyle.SHORT)
        .withLocale(Locale.getDefault())
        .withZone(ZoneId.systemDefault())
to format a LocalDateTime to a readable date, how can I remove the year
e
how is this #kotlin-native? looks like
java.time
code