JalonSolov
JalonSolov
Which OS? Which version of V? Which compiler? This is why the template suggests adding the output from `v doctor` at the beginning of your issue...
Sounds more like a name resolution issue. Check `C:\Windows\System32\drivers\etc\hosts` to see if it has an uncommented entry for `localhosts`. If not, add one like so ``` 127.0.0.1 localhost ``` and...
For example, on my Linux system, I created a vweb server: ``` module main import vweb struct App { vweb.Context } pub fn main() { vweb.run(&App{}, 8003) } ['/'] fn...
It may be even better to simply implement `push(elements ...T)`. Then you can supply 1 or more elements. If you want to only push 1, it would be `push(one)`. To...
I see you also have `pop` and `pop_many`. Maybe just `pop` that always returns an array? Not sure about that one. Less convenient if you only want to pop one...
> I tried to do it like `push(elements ...T)`, but I get a builder error when trying it out... I don't know why. See below... When you receive it, it...
You have a rather old version of V. Try `v up` to get the latest, then try again. Current version is `V 0.3.1 085a09e`.
The code itself looks fine. Just missing a couple of pieces to make it fit with the rest of the coreutils. Take a look at the others to see how...
Code signing certificates are use to sign Windows drivers, executables, dlls, .cab (archive) files, PowerShell scripts, etc., etc. Also used to sign Java jars, wars, ears, ... you can even...