Created
October 1, 2019 21:50
-
-
Save 100daysofdevops/b45db16d9436984950e00b4416f66541 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import "fmt" | |
| func main() { | |
| x := 10 | |
| if(x > 20){ | |
| fmt.Println("x is greater then 20") | |
| } else { | |
| fmt.Println("x is smaller then 20") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment