🔍 Kotlin Conditions

Let’s check out conditional statements in Kotlin — how your code makes decisions based on values and logic!

📝 Basic if-else Example

Output will appear here...

📖 When to Use when (Switch Alternative)

Output will appear here...

✅ Why Use Conditionals?

💡 Tip: when in Kotlin is way more flexible than switch in other languages — it can check any value type.