Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save 100daysofdevops/d3b09f71fd37baac991d299d3e44a96c 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")
}
fmt.Println("Value of x is: ", x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment