Pebaz
Pebaz
Thank you very much for taking time out of your day to address this. I really appreciate it! Although the `new()` macro is nice, I will work with `new_with()` using...
Hi @scuffi , yes a PR would really help!
Yeah probably best to go with 2.0rc, although, full disclosure, I'm not sure about the exact timeline for merging it (could be sooner, could be later). I'm just not going...
Awesome, sounds good! 👍
@scuffi Cross-compilation might be as simple as adding ARM to this table: https://github.com/Pebaz/nimporter/blob/master/nimporter/lib.py#L37C24-L37C24 ```python ARCH_TABLE: Dict[str, str] = { # Keys are known to Python and values are Nim-understood 'x86_32':...
@OvermindDL1 I achieved this by `break`ing out of the main loop. Alternatively, you could `return` out of it from a deeply nested loop.