JalonSolov

Results 435 comments of JalonSolov

Can all of you try with the latest release, to see if this is still a problem?

`-gc boehm` is the default for V (for a while, now), and you do not need to install libgc separately - V comes with it already, in the `thirdparty/libgc` subdir....

How about using reflection to write structs/arrays? ```v struct Expenses { rent int @[xlsx: Rent] gas int @[xlsx: Gas] food int @[xlsx: Food] } expenses := Expenses{ 1000, 200, 300...

`v -cflags "-static" hello.v` Results in ``` $ file hello hello: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, BuildID[sha1]=5218322b2e2cfe1833e376dff28d3a93ddf4c9be, for GNU/Linux 4.4.0, not stripped ```

I doubt it will be made the default, as it increases the file size by quite a bit... ``` [jalon@7950x ~]$ v hello.v [jalon@7950x ~]$ ls -l hello -rwxr-xr-x 1...

Well, V should be at least giving a better error message. Seeing code like this makes me wonder... why? Why not just declare a normal function, and call it? The...

`veb` doesn't do this automatically, but you _can_ do it using `$tmpl`... https://docs.vlang.io/conditional-compilation.html#$tmpl-for-embedding-and-parsing-v-template-files

This is a known limitation of the tcc compiler V uses by default, not in V itself. The only options at this time are to install V in a directory...

You can always download the tcc source, using the exact same git commit we did, and build it yourself locally. See https://github.com/vlang/tccbin for which commit we used, and the compile...

Question: Why do you expect something that was created in 201X to support back to 1999? Why not simply use tools created in 199X, instead of expecting newer tools to...