πŸƒ Swift Variables

In Swift, you use var for variables (which can change) and let for constants (which don’t change).

πŸ“ Example: Declaring Variables

Output will appear here...

πŸ“– Key Points

πŸ’‘ Tip: Always prefer let over var unless you need the value to change β€” it's safer and avoids accidental bugs.