This document describes how to implement a Concept Exercise for the Java track.
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read the following documents:
The goal of this exercise is to learn about boolean operation
Learning objectives
Know of the existence of the boolean type and its two values.
Know about boolean operators and how to build logical expressions with them.
Know of the boolean operator precedence rules.
Out of scope
Nothing to report
Concepts
booleans: know of the existence of the boolean 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
This exercise's prerequisites Concepts are:
basics: know how to define methods.
Resources to refer to
Hints
Nothing to report
After
Nothing to report
Representer
This exercise does not require any specific representation logic to be added to the representer
Analyzer
This exercise does not require any specific analyzer logic to be added to the analyzer
How to implement a Java Concept Exercise
This document describes how to implement a Concept Exercise for the Java track.
Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read the following documents:
Please also watch the following video:
Goal
The goal of this exercise is to learn about boolean operation
Learning objectives
boolean
type and its two values.Out of scope
Nothing to report
Concepts
booleans
: know of the existence of theboolean
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
This exercise's prerequisites Concepts are:
basics
: know how to define methods.Resources to refer to
Hints
Nothing to report
After
Nothing to report
Representer
This exercise does not require any specific representation logic to be added to the representer
Analyzer
This exercise does not require any specific analyzer logic to be added to the analyzer
Implementing
To implement this exercise, please follow these instructions.
Help
If you have any questions while implementing the exercise, please post the questions as comments in this issue.