Skip to content

Instantly share code, notes, and snippets.

@kajetan-suchanski
Created January 2, 2020 08:58
Show Gist options
  • Save kajetan-suchanski/cb995a099dfce27fec62e3b5de8bfbe8 to your computer and use it in GitHub Desktop.
Save kajetan-suchanski/cb995a099dfce27fec62e3b5de8bfbe8 to your computer and use it in GitHub Desktop.
class ApplePie
class Cheesecake
class Coffee
fun listOfAnyExample() {
val listOfAny = listOf<Any>(ApplePie(), Cheesecake(), Coffee())
listOfAny.forEach { println("I am ${it.javaClass.simpleName}.") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment