More i capitalization

This commit is contained in:
Firas Khalil Khana
2021-05-01 13:21:56 +03:00
committed by İnanç Gümüş
parent 27c12b9b58
commit 73b37c16c5
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import "fmt"
func main() {
// remove the comments and run
// i've commented the lines it's because of the warnings
// I've commented the lines it's because of the warnings
// fmt.Println("true && true =", true && true)
fmt.Println("true && false =", true && false)

View File

@ -12,7 +12,7 @@ import "fmt"
func main() {
// remove the comments and run
// i've commented the lines it's because of the warnings
// I've commented the lines it's because of the warnings
// fmt.Println("true || true =", true || true)
fmt.Println("true || false =", true || false)

View File

@ -30,7 +30,7 @@ func main() {
s.Show("grades", grades)
// let's create a new scope
// 'cause i'm going to use variables with the same name
// 'cause I'm going to use variables with the same name
{
// ages and agesArray have the same backing arrays
agesArray := [3]int{35, 15, 25}