🔤 Kotlin Variables

Variables are used to store data values in Kotlin. You can declare them using val (immutable) or var (mutable).

📝 Declaring Variables

Output will appear here...

📚 Types of Variables

💡 Tip: Prefer val by default, and only use var when you know the value needs to change.