🔄 Go Loops

Go uses the for loop for all looping purposes — no while or do-while. It's clean, powerful, and flexible.

📝 Example: Counting with a Loop

Output will appear here...

📖 Key Points

💡 Tip: Use for {} to create an infinite loop — handy for servers and background workers.