-
-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b39f0a
commit 594cba5
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Design | ||
|
||
## Goal | ||
|
||
The goal of this exercise is to teach the student the basics of the Concept of Symbols in Ruby. | ||
|
||
## Learning objectives | ||
|
||
- Know of the existence of the `Symbol` object. | ||
- Know how to create a symbol. | ||
- Know of some basic symbol methods (mostly conversion methods). | ||
|
||
## Out of scope | ||
|
||
- Hashes. | ||
|
||
## Concepts | ||
|
||
- `Symbols` | ||
|
||
## Prerequisites | ||
|
||
- `Conditionals` | ||
|
||
## Representer | ||
|
||
This exercise does not require any specific representation logic to be added to the [representer][representer]. | ||
|
||
## Analyzer | ||
|
||
This exercise does not require any specific logic to be added to the [analyzer][analyzer]. | ||
|
||
[analyzer]: https://github.com/exercism/ruby-analyzer | ||
[representer]: https://github.com/exercism/ruby-representer |