JalonSolov

Results 508 comments of JalonSolov

Hmm... on Manjaro linux (desktop, no docker involved): ``` $ v run ./burger.v 13694760995115306507 $ v -prod run ./burger.v Note: building an optimized binary takes much longer. It shouldn't be...

So `-g` seems to be making the difference between hitting the segfault or not... Here it is again, compiling then running the compiled object, no `run` involved. Note the only...

sdl and c2v don't have anything to do with each other. I have confirmed this failure.

``` $ sdl2-config --version 2.30.6 $ ```

If I run the `setup.vsh` script to get the correct branch, it fails in a different way... ``` [jalon@7950x sdl]$ v run setup.vsh Your version is 2.30.6 The SDL module...

Yes, with that option, it works.

V seems to allow `greet('Mr.' 'Joe')` as well. I think that should actually be an error. It is working in V because V still sees it as 2 separate strings,...

As long as it's documented that either newline or comma works. But then what about OP's comment about function declarations? Shouldn't they work the same way, then? As long as...

At the least, it would've looked "better" (subjectively, of course) if it had been formatted as ```v deploy_opt := android.DeployOptions{ verbosity: opt.verbosity format: format // keystore: keystore activity_name: opt.activity_name work_dir:...

Put a single `v.mod` file at the root of the project. This acts as the anchor point to look for local modules. Having multiple `v.mod` files gives multiple possible anchor...