Results 144 comments of gingerBill

A built in package manager would be good but it should just be a default plugin. We could use Package Control as we are trying to be backwards compatible with...

That is true that all Sublime addons would work but that doesn't necessary mean that all Lime addons work in Sublime. Sublime --> Lime Lime !-> Sublime The advantage of...

This isn't really a "bug" but more of a "Linux is not yet supported for portmidi and miniaudio".

Precompilation is a little more complicated than just the `-use-separate-modules`. Effectively it means you need to ignore most of the minimum dependency system as each package would need to precompile...

The actual solution is to just yeet LLVM, but not for the short period of time.

@igor84 Regarding your UFCS "readable" code, I am not even sure I understand what it does at a glance (without a deep reading of it). ```d auto result = vector1.cross(vector2).transform(someMatrix).normalize().cross(vector3);...

I experimented with `x as T` in the early days of Odin and it was not a pleasant experience since Odin is very C like. It may read fine if...

Does this work if you change the signature to this? ```odin _execlp :: proc( file: cstring, arg: cstring, #c_vararg args: ..cstring) -> uintptr --- ```

My hunch is that the passed `nil` is actually getting passed as a `nil` `any` e.g. `any{}`.