-
Notifications
You must be signed in to change notification settings - Fork 173
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
Contribute examples to Rosetta Code #222
Comments
While I agree with this, I think the standard library and compiler are still very much in flux. This makes it hard to program “good” solutions that will stay idiomatic for some time. While it would surely be great from a PR perspective, I’m not sure that programming and maintaining the example wouldn’t—at the moment—be more of a distraction than something that adds value. Maybe I’m wrong though. I’m bad at juding what’s important and what isn’t. |
Let's do this when we've reached some kind of milestone, after doing some more hard thinking about naming and such! |
My only feedback to this would be to solve the Expression Problem. That would impact language semantics the greatest. |
@mlhaufe I believe we have a solution for it already, namely interfaces. Or do you disagree? :) I'm more concerned with the current lack of lambdas, I think a lot of code will change when we have those. |
@eriksvedang Indeed, I disagree. This topic should be a separate issue if you want to pursue it. Basically here's what you have to solve: (Examples in TypeScript) The functional form in this case. |
Here's how I'd solve that in Carp: https://github.com/carp-lang/Carp/blob/master/examples/expression_problem.carp |
Can you represent Hutton’s Razor in your example explicitly? Create a type representing the AST of expressions:
evaluate the datatype:
Now extend Exp data type with "Mul Int Int" without modifying the above code |
We don’t have sum types yet, but we can do the following:
We could extend that like so:
See also how protocols solve the expression problem. Interfaces are just our flavour of it. |
Indeed, I am aware of the application of protocols but the issue here is deeper. You might be interested in the LTU conversation on this and Clojure's attempt at it: http://lambda-the-ultimate.org/node/4136#comment-63045 Again, if this is an interest, I'd think it should be a separate thread. |
The thread you linked to says what Clojure is missing is static typing. We have static typing, and we have solved the problems you gave us. Do you have any other objections? |
Correct my if I'm wrong, but there is an implied tone here. I'll wait to see how the language develops further before considering further feedback. I do have other issues, but I doubt it matters at this stage of the language's development as it is so much in flux as mentioned. My primary feedback was always the Rosetta Code suggestion and not the Expression Problem. I can very much push that door further to point out more shortcomings but what's the point? |
Yes, agreed. I'll leave this issue open as a reminder to submit to Rosetta when we've reached a more stable point. |
@mlhaufe Pardon the tone. This is not how I want to interact with you—or anyone else for that matter. I would be interested in hearing more about your complaints with regards to the expression problem, either on another issue or using another channel altogether. I don’t want to derail the point of this issue even more, but I believe that I owed you an apology for the tone of the reply above. EDIT: I want to add that I didn’t mean the comment to be insulting or demeaning, but it was unnecessarily curt. |
Contributing examples to Rosetta Code would be useful and informative not only for newcomers to the languages but as a sanity check on the syntax/semantics of the language
http://rosettacode.org/wiki/Category:Programming_Languages
The text was updated successfully, but these errors were encountered: