Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 265 Bytes

7.10.md

File metadata and controls

12 lines (8 loc) · 265 Bytes

Hands on Exercises - Level 3 #10

Write down what these print

  • fmt.Println(true && true)
  • fmt.Println(true && false)
  • fmt.Println(true || true)
  • fmt.Println(true || false)
  • fmt.Println(!true)

answer