replim
most quick REPL of nim
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Passing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install replim
choosenim install replim
git clone https://github.com/gmshiba/replim
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| replim | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/gmshiba/replim |
|---|---|
| Homepage | https://github.com/gmshiba/replim |
| Documentation | View Documentation |
| Registry Source | nimble_official |
README
Replim
replim is the most quick REPL of nim.
DEMO

Installation
if you have installed Nim already, that's easy:
nimble install replim
Features
- checking value without "echo"
- auto indent
- running on VM
if you assigned variable or functions, you can check those value without typing "echo".
>>>var foo = "bar"
>>>foo
bar
>>>proc bar(): string =
... return "foo"
...
>>>echo bar()
foo
>>>bar()
foo
>>>bar() & ", bar"
foo, bar
Warning
- replim can't import libraries that import C library at present.
>>>import nre
..\..\..\..\..\nim-0.xx.x\lib\impure\nre.nim(432, 24) Error: cannot 'importc' variable at compile time
Options
- :back : clear last line.
- :clear : clear all lines.
- :quit : quit this program.
- :display : display history.
