Golang (Go) Tutorial - Control Flow - If/Else

Unlock Premium Features: AI explanations (Hinglish), Indian voice & Videos
Sign Up Free

๐Ÿ”€ If-Else - Decisions

Real Life:

๐ŸŽ“ Exam Result:
If marks >= 40 โ†’ Pass
Else โ†’ Fail

๐ŸŒก๏ธ Weather:
If temp > 30 โ†’ Hot
Else if temp > 20 โ†’ Normal
Else โ†’ Cold

Syntax

if condition {
    // code
} else if condition {
    // code
} else {
    // code
}

๐Ÿ’ก Go Special:

No parentheses needed!
Curly braces required (even for 1 line)

๐Ÿค– AI Tutor Unlock Karo!

Apni language mein coding seekho - Hindi, Marathi, Gujarati aur 10+ Indian languages mein!

  • Hinglish mein explanations
  • Real-life examples
  • Beginner-friendly
Free Signup Karo

Example

if age >= 18 {
    fmt.Println("Adult")
} else {
    fmt.Println("Minor")
}