Dawid
Dawid
This is probably a compiler error, but I wasn't able to come up with a reproduction without jsony. Nim version: 2.2.0 Backend: c # imported.nim ```nim import pkg/jsony type Foo*...
```nim const keywords = collect(for it in Keyword: $it) ``` Expands to: ```nim const keywords = collect( for it in Keyword: $it ) ``` I don't think it's ideal. nph...
# Problem The formatting is both ugly and throws off VSCode's Nim extension's code highlighting for "emitted" code. # Version ❯ nph -v v0.6.1-0-g0d8000e # Examples ```nim const foo =...
When the import is present, there is no red underline for the underlined symbol: ```nim import prologue blah ``` Upon running `nimble run`, the compiler outputs the expected `Error: undeclared...
# System MacOS 15.1.1 Nim 2.2.4 # Code ```nim proc main() = initWindow(800, 450, "Test") var camera = Camera3D( position: vec3(0, 10, 10), target: vec3(0, 0, 0), up: vec3(0, 1,...