0 / 60 seg.

Both const and @JvmField create constants. What can @JvmField do that const cannot?

class Styles {
  companion object {
    const val COLOR = "Blue"
      @JvmField val SIZE = "Really big"
   }
}