JalonSolov
JalonSolov
Look on https://winlibs.com - you have a choice of downloading gcc either WITH, or WITHOUT clang/llvm/ldb/lldb Just choose one of the links to the left, instead of the right (after...
Figured it out... the next line starts with `be`, so V is seeing `0be` thinking you meant to start a binary literal, but the `e` is, indeed, unsuitable for that....
V _can't_ preserve the case of the names, because V doesn't support mixed-case variable names. `v translate` does, however, need to provide a workaround for this issue.
No. Immutable objects should _stay_ immutable for the entire run of the program. If you want something to be mutable, declare it mutable in the first place. If you really...
Right off the bat, there's a problem with litehtml because it's in C++, and V doesn't get along well with C++. The only real reason for doing a browser in...
With current V, the path has to be writable by the current user.
That could wind up being a lot of dependencies. And we would have to set up a system to build it all from source, generate all the variations of shared/static...
If you can convert the rust code to V, please do. :-)
If you want to see what's taking the most time, just run ``` v -profile - run bignum.v ``` where `bignum.v` is the first example given.
```v import time import math.big fn main() { start := time.now() a := big.integer_from_int(9) _ = a.pow(33420489) stop := time.now() println("time elapsed: ${(stop-start).seconds()}") } ``` takes care of the unused...