-
When the forum is searched for the word `htmlgen` one of result posts is mine with the text `Something like **htmlgen**?`. The extra asterisks are not present in the original post, and the hyperlink l…
-
Trying out the 4th code example from the [Generic concepts and type binding rules](https://nim-lang.org/docs/manual.html#generics-generic-concepts-and-type-binding-rules) chapter of the manual, using …
-
```nim
ppDiff 1, 2
```
fails with `hpprint.nim(261, 27) Error: request to generate code for .compileTime proc: Lit`
-
### Summary
'using' is a keyword targeted at avoiding redundant repetitions. Currently it can only be used top-level, but there are common use-cases on proc-level where it would be beneficial to ex…
-
https://github.com/icyphox/nanoid.nim/issues/1
> Important This API is deprecated. New and existing software should start using Cryptography Next Generation APIs. Microsoft may remove this API in …
-
refs: https://forum.nim-lang.org/t/7219#45590
>> It does not convert snakes to camels.
> That's not its job, no other comparable tool (gofmt, clang-tidy, etc) does that either.
=> pefect job …
-
Function `echo` outputs the wrong string.
### Example
```nimimport asyncdispatch
iterator x(): int {.closure.} =
discard
proc y() {.async.} =
for z in x():
discard
waitFor y(…
-
### Summary
I am looking for a solution to be able to upload large files to asynchttpserver without wasting memory.
asynchttpserver currently reads content length of the request directly int…
-
`move` gives wrong results with var params in VM
### Example
```nim
when true:
type Foo = object
f0: int
proc fn(a: var Foo) =
var s: Foo
s = move(a)
echo s
echo a
…
-
### Summary
If a module exports a global variable of an object that is named the same as the module itself the module will shadow the global variable and lead to confusing error messages:
```nim
…