Mads M. Jensen
Mads M. Jensen
I have looked through the documentation and code both, it does not appear to currently be an option. However from what I can tell, it doesn't look too difficult to...
> Can you show a few error messages here? Or add some (snapshot) tests so we can discuss them in the review? Gladly. I'll share some examples when next I’m...
Here is a list of example errors. They are quite unrealistic but simple. Example of a single missing closing bracket: ```rs >>> "{ "{"Hi"" }" error: while parsing ┌─ :1:4...
I remembered I had been working on this and gave it another stab. I'm not sure what I think about all the decisions I made, but everything seems to work...
> The problem is that |> has lower precedence than if … then … else Oh of course, I completely forgot about that. I'm not sure of which is better,...
> Unrelated: I'm excited about this unit_list feature! I really liked the idea of it when I read about it, so I'm excited to try my hand at it!
> > `# the problem with chaining:` > > what do you mean by that? I meant that making a chain of if-else expression would no longer be possible without...
I like most of what you propose, especially the multi line approach. I am not a fan of requiring an `end` keyword though. In my opinion it is ugly and...
> Not sure I got everything. What you propose is basically that we keep everything as I said expect a double newline can replace an `end`? > This way, we...
I was thinking only having functions work that way, not if-else. I do see how that makes it impossible to have empty lines or even comment lines inside functions. That...