Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created October 1, 2019 21:54
Show Gist options
  • Select an option

  • Save 100daysofdevops/d2844e7b1d2b56b08189ec64894c264f to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/d2844e7b1d2b56b08189ec64894c264f to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
x := 10
if(x > 20){
fmt.Println("x is greater then 20")
} else if (x > 5) {
fmt.Println("x is greater then 5")
} else {
fmt.Println("Value of x: ",x)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment