add: questions and exercises for the if statement

This commit is contained in:
Inanc Gumus
2018-10-20 19:03:06 +03:00
parent 9652451f5c
commit 63243dbe77
25 changed files with 1155 additions and 15 deletions

View File

@@ -92,8 +92,8 @@ fmt.Println(2.9 <= 2.9)
## What does this code print?
```go
fmt.Println(1 >= true)
fmt.Println(0 <= false)
fmt.Println(false >= true)
fmt.Println(true <= false)
```
1. true true