documentation of what? unlike Java, Kotlin does no...
# getting-started
y
documentation of what? unlike Java, Kotlin does not have raw types.
new ArrayList()
in Java is a raw type.
ArrayList()
in Kotlin is a generic type with inferred type arguments, or a compilation error if it isn’t possible to infer the type arguments
👍 1