Skip to content

v1.8.0 - simple to complex string variables

Choose a tag to compare

@krzysztofrewak krzysztofrewak released this 03 Oct 15:26
· 38 commits to main since this release
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}!";