This issue describes how to implement the booleans concept exercise for the Go track.
Goal
The goal of this exercise is to teach the student the basics of the Concept of Booleans in Go.
Things to teach
Know of the existence of the bool type and its two values.
Know about boolean operators and how to build logical expressions with them.
Know of the boolean operator precedence rules.
Concepts
The Concepts this exercise unlocks are:
booleans-basic: know of the existence of the bool type and its two values; know about boolean operators and how to build logical expressions with them; know of the boolean operator precedence rules.
This issue describes how to implement the
booleans
concept exercise for the Go track.Goal
The goal of this exercise is to teach the student the basics of the Concept of Booleans in Go.
Things to teach
Concepts
The Concepts this exercise unlocks are:
booleans-basic: know of the existence of the bool type and its two values; know about boolean operators and how to build logical expressions with them; know of the boolean operator precedence rules.
Prequisites
There are no prerequisites
Resources to refer to
Hints
After
Representer
[If this exercise requires any modifications to the track's representer, list these changes here and the reason for these changes.
For example:
This exercise does not require any specific representation logic to be added to the representer.
To help the implementer get started, add a link to the language's representer document.]
Analyzer
This exercise does not require any specific logic to be added to the analyzer.
Implementing
[Please insert your track-specific implementation details here.] . |-- .docs | |-- after.md | |-- hints.md | |-- instructions.md | |-- introduction.md |-- .meta | |-- config.json | |-- design.md | |-- Example.go |-- booleans.go |-- booleans_test.go
Help
If you have any questions while implementing the exercise, please post the questions as comments in this issue.