INim icon indicating copy to clipboard operation
INim copied to clipboard

Interactive Nim Shell / REPL / Playground

Results 26 INim issues
Sort by recently updated
recently updated
newest added

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_index.nim ... @["a", "b",...

* if there is not adverse consequence on error messages (eg if we never need to look at `bufferSource`), would it make sense to get the source from from `stdin`...

- [x] maybe the 1st easy step would be to colorize the prompt; making it easy to distinguish cmds from outputs - [ ] the errors/warnings produced by nim can...

enhancement

In python it is possible to start an IPython instance inside your own Python programs (see https://www.ics.uci.edu/~dock/manuals/IPython/node9.html). This allows you to evaluate dynamically the state of your code, operate with...

readLine not working: ``` [user@userPC bin]$ ./inim 👑 INim 0.6.1 Nim Compiler Version 1.6.6 [Linux: amd64] at /usr/bin/nim nim> var a = readLine(stdin) /usr/lib/nim/lib/system/io.nim(156) raiseEOF nim> ```