Ada

Results 190 comments of Ada

I think if you make a flag for a builtin, it should be possible to transparently handle it the following ways: ``` def my_cmd[--flag: bool] { } ``` 1) Iff...

I was thinking we need a way of concisely expressing that something is true (`--xy`) while retaining the ability to negate that value explicitly, and ideally without having to add...

@cumber Yeah, that's exactly how I feel too! It seems very intuitive to have absence be false by default, presence being true by default, and `=` syntax to explicitly set...

Is the reason this was done purely a matter of syntactic uniformity? It seems the community is leaning in the direction of special behavior for boolean flags, anyway. (Which could...

If it helps, I can confirm as of 2023-02 that this library is compiling & working on aarch64, with all tests passing.

Whoops, it's supposed to be marked as a feature request, not a bug...

@Devan-Kerman it looks like upstream is reluctant to implement this, so it might end up being a fabric-exclusive feature if we implement it here.

Damn, I guess it won't get added to either version unless upstream changes their mind. :( I'd be willing to work on a ComputerCraft addon for FishyTurtle once I get...

Damn, fair enough.

I've never actually made mixins for another mod -- only Minecraft itself. Is mod loading order something to be concerned about, and how should it be addressed?