Tyler Swann

Results 16 comments of Tyler Swann

Okay so is it just a case that at this stage integers (and any other types) don't have an implementation for comparisons?

Is there a fix for this yet? I'm running into the same issue. I was trying the quickstart tutorial and found that buckaroo couldn't find a usable version of libssl....

Marked in code. I will have a look tomorrow.

## Potential Solution Use the experimental `::HashMap::try_insert()`. Like insert but fails if the key already exists rather then over-writing the old value. Could be helpful for error messages as well...

But `HashMap::insert()` overrides the old value meaning if you declare a function `foo` twice, the second is going to be the one used by the program. The `HashMap::try_insert` means if...

Fair enough and I agree with not wanting to use experimental features, particularly unstable ones. We could compare the insert methods return value and match it to see if it...

Checkout the [WIP](https://github.com/Champii/Rock/commit/692fa51f9f84cf501ffdae64d65f548aabee7ba6) I have for #150

Well I'm happy to help, I like the style this language is going for, a sort of unique blend of rust and Haskell. As for fixing the issue, my best...

Docker would be good to automate the build so you can get the various packages. It also might help test across different systems.

Thanks for the reply. I will keep an I out for the release.