Mirror of
forum.nim-lang.org
index
10756 :: How does 'nim secret' actually work?
[2023-12-10T21:46:17+01:00]
View Orginal
EnteryName
(orginal)
[2023-12-10T21:46:17+01:00]
view original
I was interested in knowing how does the Nim REPL actually work under the hood, and what are its limitations since I don't find any resource online.
ASVI
(orginal)
[2023-12-10T21:53:03+01:00]
view original
It's running nimvm, so it have all nimvm limitations.
auxym
(orginal)
[2023-12-11T01:17:31+01:00]
view original
You might also be interested in INim, which works by compiling the input on-the-fly with tcc, a small and non-optimizing, but very fast, C compiler.
Araq
(orginal)
[2023-12-11T08:25:25+01:00]
view original
nlvm recently got REPL support without the restrictions, as far as I know, haven't tried it myself yet.