Delyan Angelov

Results 270 comments of Delyan Angelov

Calling `setbuf(stdout, 0);` at the start of the C program, will be equivalent to the `unbuffer_stdout()` call in V. ``` #0 15:03:20 ^ master /space/v/oo>bat hw_loop_c.c ───────┬────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── │ File: hw_loop_c.c...

> Perhaps a stdout_linebuffered() at the top would be good enough. It will need to be implemented in `vlib/builtin/builtin.c.v` next to unbuffer_stdout. Just please use `linebuffer_stdout`, to fit with existing...

Functions and methods usually use `verb` or `verb_subject` . As for grouping, that is true, but the point is a bit moot. The last time I tried to group all...

Imho the error should be a runtime one (done in the `json` module preferably), since the passed text will be only seldom a hardcoded json string (it is done in...

If you change one of the names there, you have to also change the corresponding name in `simple_shader.glsl`: `in vec4 aposition;`

Yes. Thank you for reporting it. We should think of a way to handle those better (since V can know about the shader variables from its `v shader` tool, it...

The Vinix failure is not related, and already fixed on master.

This triggers the same or very similar compiler panic: ```v fn f() ! { go fn () { mut x := 123 go g(mut x) }() } ``` It does...

Try reverting c7fb755 locally, to see if that will help? It is a recent change to os.execute .

Although c7fb755 was in `vlib/os/os_nix.c.v`, and you are reporting it for windows 🤔 . Perhaps we should investigate the `vlib/os/os_windows.c.v` version more instead.