Oldes / Rebol-wishes

Repository for keeping Rebol related wishes out of issues
0 stars 0 forks source link

WISH: there could be new line on each key when converting map to block #31

Closed Oldes closed 3 years ago

Oldes commented 3 years ago

Now when map! is converted to block!, it produces inconsistent results:

to block! #(a: 1 b: 2
c: 3)
== [a: 1 b: 2
c: 3]

It would be better to have the result unified like in Red language:

== [
    a: 1 
    b: 2 
    c: 3
]