There was an error while loading. Please reload this page.
7bf9271
As described in #80 and implemented in #82, with this release this:
$test = "test"; $concat = "test $test test"; $legacy = "Hello ${test}!";
will be transformed to this:
$test = "test"; $concat = "test $test test"; $legacy = "Hello {$test}!";