JalonSolov
JalonSolov
Do both `v up` and `v update` first, of course.
@nblfikr The fix was not to make your original background image work - we can't do that since the format is one that Sokol doesn't understand. The fix was to...
The current routine could be renamed to `local_epoch`, and a corrected epoch could be calculated.
:man_shrugging: just a thought in case it was needed.
Adding `-g` points to the line with the first call to `strconv`: ``` $ v -autofree -g run free.v /tmp/v_1000/../../../../../../home/jalon/free.v:5: error: cannot convert 'typedef struct string' to 'int' builder error:...
Sounds like a problem in the C cross-compiler being used, not V. Not sure if anything can be done in V to "fix" that.
If you want something to be shared across all sessions, mark it with the `[vweb_global]` attribute. You can check the gitly source to see an example.
Wouldn't it make more sense to return an Option type, so it would either be a valid array or `none`?
That's why I was against breaking the previous Result into Result + Option, but I was outvoted. It is simple enough to return `error('No results')` and check for that specifically.
> > It is simple enough to return error('No results') and check for that specifically. > > No, it is not simple, and creates more problems on several levels. Umm......