-
**info:**
- nim compiler version: `1.4.8`
- inim version : 0.6.1
- os: windows 10
**the code:**
```
import os
nim> proc uuu=
echo "start"
sleep 1000
echo "end"
nim> …
-
(From Nim community survey 2017)
-
test.nim:
```nim
import foo/util
```
```
nim c -o:app -r test.nim
#works, because I set the path in nim.cfg
```
inim
```
>>> import foo/util
Error: cannot open file: foo/util
import fo…
-
When I try `run_full`, it throws the following error during crf step.
```
Traceback (most recent call last): …
-
If not, are there alternatives?
-
in both cases of https://github.com/AndreiRegiani/INim/issues/29, there's a flush missing:
the result of 1st echo isn't shown
whereas `nim` itself does flush:
```
nim c -o:app -r bugs/t59_array_…
-
## motivating example
Whenever nim introduces a (necessary) breaking change (eg; `-d:nimLegacyX` flags, or see https://github.com/nim-lang/Nim/pull/16924), some packages in important_packages may bre…
-
TLDR: this would obsolete coreReordering, avoid need for fwd declarations, solve cyclic dependencies, massively speedup compilation times and likely decrease binary sizes.
## proposal
Sem-check sy…
-
req.headers["user-agent"] returns:
`Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML`
But I expected it to return:
`Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) Ap…
-
Based on TAB, linenoise should have this functionality, one should be able to somehow call nimsuggest , but for the first implementation, just a set with all the defined names in the active session sh…