Pre 0.18.0:
var myString = "Some String"
echo "'", myString, "'" # --> echos 'Some String'
Post 0.18.0:
var myString = "Some String"
echo "'", myString, "'" # --> echos 'Some String ', notice the space (null
character)
Is this here to stay or a regression?
Specs:
* Windows 10 x64
* Nim Version 0.18.1 [Windows: i386], recompiled today from github
