metaeducation / ren-c

Library for embedding a Rebol interpreter into C codebases
GNU Lesser General Public License v3.0
126 stars 27 forks source link

should rejoin [#a #b] create an issue! ? #1084

Closed IngoHohmann closed 3 years ago

IngoHohmann commented 3 years ago

Given this ...

>> rejoin ["a" #b]
== "ab"

>> rejoin [<a> #b]
== <ab>

>> rejoin [[] #b] 
== [#b]

>> rejoin [#a #b]
== "ab"

Should should it be like this?

>> rejoin [#a #b]
== #ab
hostilefork commented 3 years ago

Covered by commit for #1085