exercism / exercism/problem-specifications
Exercise Idea: Bob and Friends
- 主要语言
- Ruby
- 星标
- 358
- 派生
- 563
- 平均合并
- 18 小时 41 分钟
- 30 天内合并 PR
- 2
描述
Hey, so I am thinking of a new exercise. It is inspired by `bob`, but it might be better if it is just called `reply`.
Basically, I am a big proponent of decoupling the logic for classifying messages to Bob from the reply logic. Typically this results in using some sort of `Algebraic Data Type` or enum variants.
An example of my over-engineered solution in Haskell can be found [here](https://exercism.io/tracks/haskell/exercises/bob/solutions/d4d6df4c32124373a5ed5ce8e7b06233).
The benefit, as I see it, is that there is clear separation of logic and responsibilities. A wonderful side effect of that is how easy it becomes to implement reply functions for people other than Bob.
Across paradigms there are many ways that this can be handled. In rust for instance one could use a `Reply` trait that takes a `&str` and returns a `&str`, but it can use an `enum` named `Locution` or `MsgClass` to do the work that isn't related to the struct `Bob` or `Carol` or `John`.
In OOP languages people could use class composition or use interfaces.
Anyway, I made this issue, so I could guage community enthusiasm for this exercise idea.
I think it is still worth it to have the `bob` exercise (sort of like how the `resistor-color` exercises keep uping their game at each step).
It seems to me like most students experience `bob` as an annoying burden. I didn't realize how much I liked the exercise, until I realized there was a massive opportunity to decouple that logic of message classification from response generation thereby making well-compartmentalized code that was general enough to make new `responders` trivial to write.
Okay, I am always too verbose :/ Please let me know your thoughts about this. If there seems to be some excitement for this proposal, then I will make a PR for this new exercise ;)
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。