JalonSolov
JalonSolov
Is that a list of fields, or a description of the `max_id` field? The proper way to show fields in a table is `SHOW COLUMNS FROM `
Or, perhaps better yet, make it support the `SHOW` statement so normal SQL can be used (and changed under the covers, if necessary, for the supported databases).
As of last week, the `log` module already allows this time format... https://github.com/vlang/v/blob/4c47bb5288fef3a9a1819c1b7b5210d1422145e2/vlib/log/log.v#L16
V doesn't try to parse any headers - it doesn't look at them at all. It simply adds the `#include` lines to the generated C code, and let's the C...
Not really. My proposal is more to have a simple common syntax between dynamic and fixed array.
Perhaps just use https://modules.vlang.io/net.http.html#download_file instead of shelling out to wget?
A simple `#flag` in the source should take care of it.
Works fine on Linux. ``` x.v:1:8: warning: module 'gg' is imported but never used 1 | import gg | ~~ 2 | 3 | [x.v:6] a[0]
The best way to "fix" this would be to finish the "new" interpreter, and replace the REPL with that.
I think `-Wimpure-v` should work without `-W test`... which I never knew existed. In any case, if `-Wimpure-v` is turned on by default, it will definitely affect all modes.