-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preparing the road to v3 of Exercism for the elm track #280
Comments
ping @leojpod |
Could we maybe brainstorm among maintainers/mentors for FP languages and possibly also separately for languages with partial application? Obviously the Elm and Haskell tracks would have lots of concepts in common. F# and OCaml share a lot of features with them too. As for FP in general, Clojure and Elixir would fit too, at least. |
I haven't been following much for the past two months but last time I discussed with @ceddlyburge , we had gathered the concepts at the end of this message. I don't know how much of this could be done in common with Haskell and others but minimizing work would be great! Personally, I've been spending time on improving the tests situation for Elm, to improve the online editor and I don't think that can be of use for the other languages. Regarding work on normalized representation, I haven't thought about it much so I've no idea of what could be shared there. ConceptsBasics
Computation
Types
Data structures
Dealing with uncertainty and errors
Text manipulation
Numbers
Time
Binary manipulation
|
Hi, most of my open source time is on the train to work, which obviously isn't happening at the moment, so I am not doing much. I think I agreed with @mpizenberg that I would create a dependency graph of the concepts, probably as a mermaid / markdown diagram. I think we should then implement the simplest one and then use this as the initial use case for the representer. Presumably the elm compiler (written in Haskell) already creates an AST from the code which will hopefully do most of the work. I don't currently know Haskell though. There is also the elm-in-elm compiler which is written in Elm and so might make things easier, but is not as mature. Another option is to use elm-format I think, and then analyse the string, although this would only be practical for very simple things. |
This issue is getting outdated so I'm closing it. |
Hi there, Exercism is currently trying to redesign tracks in order to improve both students and mentors experience. More info on v3 is also available in this Github issue: exercism/exercism#5088
Part of the update consists in building concept exercises. We will get more info about that from the Exercism team later.
And part of the update consists in automating feedback to students for solutions that are similar to ones that already got approved feedback. This will be done with "representers": exercism/exercism#5079.
Concretely, that means that we should try to generate some kind of normalized representation of the submitted code. In practice, according to tests in the ruby track, using the code AST with names somewhat normalized seems to help already quite a lot. It feels like a fun project if you like program analysis but is a bit outside of my programming skills.
So I'm making a meta issue to basically try to gather ideas and energy of people that might enjoy working on this!
The text was updated successfully, but these errors were encountered: