exercism / v3

The work-in-progress project for developing v3 tracks
https://v3.exercism.io
Other
170 stars 163 forks source link

[Go] Implement new Concept Exercise: booleans #1626

Closed oanaOM closed 4 years ago

oanaOM commented 4 years ago

This issue describes how to implement the booleans concept exercise for the Go track.

Getting started

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 up on the following documents:

Please also watch the following video:

Goal

The goal of this exercise is to teach the student the basics of the Concept of Booleans in Go.

Learning objectives

Out of scope

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.

Prerequisites

There are no prerequisites

Resources to refer to

Hints

After

Representer

This exercise does not require any specific representation logic to be added to the representer.

Analyzer

This exercise does not require any specific logic to be added to the analyzer.

Implementing

To implement the concept exercise, the following files must be created: .
 |---- .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.

oanaOM commented 4 years ago

I would love to work on this. This is a my first open-source issue so I think it's a good practice to start with it :)

oanaOM commented 4 years ago

@tehsphinx is it ok if I start to work on this concept exercise?

tehsphinx commented 4 years ago

Yes! You're most welcome to do so!

oanaOM commented 4 years ago

Great! I've open a new PR #1832 for this.

tehsphinx commented 4 years ago

Can we close this? @oanaOM?

oanaOM commented 4 years ago

Sure thing! closing now.