Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save 100daysofdevops/aff0f29607c80f7445c7727ab3d2df50 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var x, y, z = 10, 20, 30
fmt.Println(x < y && x > z)
fmt.Println(x < y || x > z)
fmt.Println(!(x == y && x > z))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment