Wooster

Results 104 comments of Wooster

``` samu: job failed: cd /usr/home/build/zig && /usr/home/build/zig/build/zig0 src/stage1.zig -target x86_64-freebsd-gnu -mcpu=baseline --name zig1 --zig-lib-dir /usr/home/build/zig/lib -femit-bin=/usr/home/build/zig/build/zig1.o -fcompiler-rt -OReleaseFast --strip -lc --pkg-begin build_options /usr/home/build/zig/build/config.zig --pkg-end --pkg-begin compiler_rt /usr/home/build/zig/lib/compiler_rt.zig --pkg-end ./lib/std/os.zig:181:27:...

So currently this is version 2. If people don't like it (I like it), we can go with version 1 and remove the second commit.

This is working as intended and serves an important purpose in the language. For example comptime requires semantic analysis to be delayable in order to work properly. I think it's...

> But is it possible to have linter or something to check it? Not that I know of.

I actually wanted to look into making such a function a while ago because it can actually be pretty useful if you know how your input will look and you...

One thing I wanted to note is that I think the way C does it in that `scanf("%u", &age)` implicitly ignores leading and trailing whitespace is bad and we should...

In this case we hit with a `form_id` of `0x25`. It seems DW_FORM_strx1 and possibly others form types aren't implemented. https://www.dwarfstd.org/doc/DWARF5.pdf#chap%3ADWFORMstrxone DW_FORM_strx, DW_FORM_strx1, DW_FORM_strx2, DW_FORM_strx3, and DW_FORM_strx4 seem to be...

A tab is `\t` (a character with the codepoint 9) and a space is ` `.

Is there any workaround to writing something like that above?

That doesn't look as good as the above in my opinion. It doesn't scale well for many items and becomes pretty squeezed if you have many items. Please make this...