all repos — min @ 8819de97ebc3fecb935ca0ff78e49cd7b0034978

A small but practical concatenative programming language.

Removing deepCopy from dequote (not really necessary).
h3rald h3rald@h3rald.com
Wed, 03 Jun 2026 09:56:54 +0200
commit

8819de97ebc3fecb935ca0ff78e49cd7b0034978

parent

0774384a1fdba1fa8a80cb0a198d8ea7cb2627dc

1 files changed, 0 insertions(+), 2 deletions(-)

jump to
M minpkg/core/interpreter.nimminpkg/core/interpreter.nim

@@ -222,10 +222,8 @@

proc dequote*(i: In, q: var MinValue) = if q.kind == minQuotation: i.withScope(): - let qqval = deepCopy(q.qVal) for v in q.qVal: i.push v - q.qVal = qqval else: i.push(q)