ENGLISH_ABBREVIATED

Shortened English month names from 'Jan' to 'Dec'.

Samples

import kotlinx.datetime.*
import kotlinx.datetime.format.*
import kotlin.test.*

fun main() { 
   //sampleStart 
   // Using the built-in English abbreviated month names in a custom format
val format = LocalDate.Format {
    monthName(MonthNames.ENGLISH_ABBREVIATED)
    char(' ')
    dayOfMonth()
    chars(", ")
    year()
}
check(format.format(LocalDate(2021, 1, 13)) == "Jan 13, 2021") 
   //sampleEnd
}