-
This is a general issue for packages that should be in package CI until the situation has sufficiently improved, suggestions would be appreciated.
The release of 2.2 was delayed quite a bit by brea…
-
[Crypto] more potential built-in function candidates?
https://github.com/arturo-lang/arturo/blob/ce734e7a32c73173910cdf8f533f56be21febe3b/src/library/Crypto.nim#L9
```text
##########################…
-
[Crypto] is module's name a misnomer?
https://github.com/arturo-lang/arturo/blob/ce734e7a32c73173910cdf8f533f56be21febe3b/src/library/Crypto.nim#L12
```text
# TODO(Crypto) more potential built-in f…
-
[Bignums/cmp] should properly handle LLP64 mode
https://github.com/arturo-lang/arturo/blob/7bccfe0204d4abbd2cfd99df71928759f37a2b5b/src/helpers/bignums.nim#L196
```text
result = 1
# TODO(Bi…
-
The following doesn't compile
```Nim
type
Enqueueable* {.explain.} = concept x, type T
x is ptr
x.next is T
Queue*[T: Enqueueable] = object
count: int
back: T
fron…
-
### Example
```nim
import streams
template testStream(arg: untyped): untyped =
var ss = newStringStream()
ss.write(arg)
ss.flush()
echo ss.data
let
ary = ['N', 'i', 'm', ' ', 'l…
-
Hello,
I am trying to compile nimble on arm64 and I am getting the following error.
```
(base) root@2894f0eebfa3:/apps# git clone https://github.com/nim-lang/nimble.git && cd nimble/src
Cloning …
-
### Description
nimble build tries to download a resource from https://github... URL, but can't because it fails to validate the cert because
```No SSL/TLS CA certificates found```
### Nim Version
…
aphor updated
6 months ago
-
Function `echo` outputs the wrong string.
### Example
```nim
type
X*[T] = openArray[T] | varargs[T] | seq[T]
Y*[T] = ref object
dll: T
proc initY*[T](): Y[T] =
new(result)
pro…
-
The manual vaguely implies that module names should follow identifier equality rules (so, partial case-insensitivity and underscore is ignored).
> A valid module name can only be a valid Nim identi…