iacore
iacore
### Qwik Version ``` "@builder.io/qwik": "^0.12.1", "@builder.io/qwik-city": "^0.0.112", ``` ### Which component is affected? Qwik City ### Expected Behaviour When generating route like `/[abc]`, when `abc` has space (0x20) in...
### Zig Version 0.11.0-dev.1898+36d47dd19 ### Steps to Reproduce and Observed Behavior ``` > zig cc -- program.c error: Unknown Clang option: '--' ``` ### Expected Behavior It should parse like...
Closes #14837 I hope my implementation is correct.
Consider the following code. ```zig const std = @import("std"); pub fn main() !void { var a: f32 = 0.66; const b = 3 / 2 / a / 2; std.debug.print("b={}\n",...
[`_Atomic` data types](https://en.cppreference.com/w/c/language/atomic) are available in C11 that ensures atomic read and load. I'm not sure how to implement this in Zig. ### Zig Version 0.10.0-dev.1427+ad5770eba ### Steps to Reproduce...
Coming from https://github.com/ziglang/zig/pull/14068 How hard is it to port current `zig translate-c` to be arocc's Zig codegen backend?
You abuse `usingnamespace` too much... it's hard to fix it now.
Refactoring based on clippy's suggestions. did not change semantic.
1. While reading the documentation, I didn't find the comment syntax. 2. Orion doesn't have token comment syntax from R7RS. It's useful to comment a block like `;#(abc def)`. It's...