I am very new to Scala and was trying to understand how we can store values of different types in a collection.
For example, assuming I have the following values with corresponding types:
12 - Int
4.0 - Float
"is the best place to learn and practice coding!" - String
How can I store all the three inputs and perform different logic on each of them?