IO.println
prints string values with quotation marks
#51
Labels
Milestone
IO.println
prints string values with quotation marks
#51
The implementation is using the
CompilerOutput
instance forValue
(therender
function) which will not work, because we only want to omit the quotation marks if the outermost value is aString
. In other words we want["hello", "world"]
to print exactly like that and not like[hello, world]
.The text was updated successfully, but these errors were encountered: